Skip to content

Commit

Permalink
Fix: * chore: use for...in replace hasOwnProperty (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mejituu authored Oct 11, 2023
1 parent b85295d commit 5458056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/service/storage/leancloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ module.exports = class extends Base {
if (REVERSED_KEYS.includes(k)) {
continue;
}
instance.set(k, updateData[k]);
item.set(k, updateData[k]);
}

const _newStatus = item.get('status');
Expand Down

0 comments on commit 5458056

Please sign in to comment.