1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-17 13:45:33 +02:00

Merge branch 'develop' into mahjong

This commit is contained in:
syuilo
2024-02-02 20:41:13 +09:00
33 changed files with 220 additions and 220 deletions

View File

@@ -409,7 +409,7 @@ export class UserEntityService implements OnModuleInit {
}),
pinnedPageId: profile!.pinnedPageId,
pinnedPage: profile!.pinnedPageId ? this.pageEntityService.pack(profile!.pinnedPageId, me) : null,
publicReactions: profile!.publicReactions,
publicReactions: this.isLocalUser(user) ? profile!.publicReactions : false, // https://github.com/misskey-dev/misskey/issues/12964
followersVisibility: profile!.followersVisibility,
followingVisibility: profile!.followingVisibility,
twoFactorEnabled: profile!.twoFactorEnabled,