From 249205eef36a9ffccfc9988af59f8e68af56fed3 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Sun, 14 Sep 2025 20:46:57 -0400 Subject: [PATCH] fix another cherry-pick mistake --- packages/backend/src/core/AccountMoveService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/AccountMoveService.ts b/packages/backend/src/core/AccountMoveService.ts index 0da153d056..72233c9332 100644 --- a/packages/backend/src/core/AccountMoveService.ts +++ b/packages/backend/src/core/AccountMoveService.ts @@ -119,7 +119,7 @@ export class AccountMoveService { // Publish meUpdated event const iObj = await this.userEntityService.pack(src.id, src, { schema: 'MeDetailed', includeSecrets: true }); - await this.globalEventService.publishMainStream(src.id, 'meUpdated', iObj); + this.globalEventService.publishMainStream(src.id, 'meUpdated', iObj); // Unfollow after 24 hours const followings = await this.cacheService.userFollowingsCache.fetch(src.id);