summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/ReactionService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-10-19 11:17:59 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-10-19 11:17:59 +0900
commitf9549e1f1b924e75270bf5b75aee1a399fc9a2a0 (patch)
tree0080a8699213b8abea4fee3da363ddb333159d7b /packages/backend/src/core/ReactionService.ts
parentperf(backend): ノートのリアクション情報をキャッシュする... (diff)
downloadsharkey-f9549e1f1b924e75270bf5b75aee1a399fc9a2a0.tar.gz
sharkey-f9549e1f1b924e75270bf5b75aee1a399fc9a2a0.tar.bz2
sharkey-f9549e1f1b924e75270bf5b75aee1a399fc9a2a0.zip
fix(backend): fix of 1671575d5d
Diffstat (limited to 'packages/backend/src/core/ReactionService.ts')
-rw-r--r--packages/backend/src/core/ReactionService.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/core/ReactionService.ts b/packages/backend/src/core/ReactionService.ts
index edf433025d..f3f2b04dd6 100644
--- a/packages/backend/src/core/ReactionService.ts
+++ b/packages/backend/src/core/ReactionService.ts
@@ -188,7 +188,7 @@ export class ReactionService {
.set({
reactions: () => sql,
...(note.reactionAndUserPairCache.length < 10 ? {
- reactionAndUserPairCache: () => `array_append("reactionAndUserPairCache", '${user.id}:${reaction}')`,
+ reactionAndUserPairCache: () => `array_append("reactionAndUserPairCache", '${user.id}/${reaction}')`,
} : {}),
})
.where('id = :id', { id: note.id })
@@ -296,7 +296,7 @@ export class ReactionService {
await this.notesRepository.createQueryBuilder().update()
.set({
reactions: () => sql,
- reactionAndUserPairCache: () => `array_remove("reactionAndUserPairCache", '${user.id}:${exist.reaction}')`,
+ reactionAndUserPairCache: () => `array_remove("reactionAndUserPairCache", '${user.id}/${exist.reaction}')`,
})
.where('id = :id', { id: note.id })
.execute();