summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/endpoints
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-11-27 21:25:54 +0000
committerdakkar <dakkar@thenautilus.net>2024-11-27 21:25:54 +0000
commit9309872cff349060ef82cf368c81f50a0932367b (patch)
tree3bcd36ec3280a97a2f6a73bc3898157002186543 /packages/backend/src/server/api/endpoints
parentsilence linter (diff)
downloadsharkey-9309872cff349060ef82cf368c81f50a0932367b.tar.gz
sharkey-9309872cff349060ef82cf368c81f50a0932367b.tar.bz2
sharkey-9309872cff349060ef82cf368c81f50a0932367b.zip
simpler check for "property present"
Diffstat (limited to 'packages/backend/src/server/api/endpoints')
-rw-r--r--packages/backend/src/server/api/endpoints/i/update.ts12
1 files changed, 4 insertions, 8 deletions
diff --git a/packages/backend/src/server/api/endpoints/i/update.ts b/packages/backend/src/server/api/endpoints/i/update.ts
index 0965f4bcf4..8e61b8f784 100644
--- a/packages/backend/src/server/api/endpoints/i/update.ts
+++ b/packages/backend/src/server/api/endpoints/i/update.ts
@@ -588,14 +588,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
// `ApRendererService.renderPerson`
private userNeedsPublishing(oldUser: MiLocalUser, newUser: Partial<MiUser>): boolean {
for (const field of ['avatarId', 'bannerId', 'backgroundId', 'isBot', 'username', 'name', 'isLocked', 'isExplorable', 'isCat', 'noindex', 'speakAsCat', 'movedToUri', 'alsoKnownAs'] as (keyof MiUser)[]) {
- /* eslint-disable-next-line no-prototype-builtins */
- if (newUser.hasOwnProperty(field) && oldUser[field] !== newUser[field]) {
+ if ((field in newUser) && oldUser[field] !== newUser[field]) {
return true;
}
}
for (const arrayField of ['emojis', 'tags'] as (keyof MiUser)[]) {
- /* eslint-disable-next-line no-prototype-builtins */
- if (newUser.hasOwnProperty(arrayField) !== oldUser.hasOwnProperty(arrayField)) {
+ if ((arrayField in newUser) !== (arrayField in oldUser)) {
return true;
}
@@ -613,14 +611,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
private profileNeedsPublishing(oldProfile: MiUserProfile, newProfile: Partial<MiUserProfile>): boolean {
for (const field of ['description', 'followedMessage', 'birthday', 'location', 'listenbrainz'] as (keyof MiUserProfile)[]) {
- /* eslint-disable-next-line no-prototype-builtins */
- if (newProfile.hasOwnProperty(field) && oldProfile[field] !== newProfile[field]) {
+ if ((field in newProfile) && oldProfile[field] !== newProfile[field]) {
return true;
}
}
for (const arrayField of ['fields'] as (keyof MiUserProfile)[]) {
- /* eslint-disable-next-line no-prototype-builtins */
- if (newProfile.hasOwnProperty(arrayField) !== oldProfile.hasOwnProperty(arrayField)) {
+ if ((arrayField in newProfile) !== (arrayField in oldProfile)) {
return true;
}