fix(backend): カスタム絵文字でリアクションできないことがある問題を修正

This commit is contained in:
syuilo 2023-04-12 16:07:58 +09:00
parent 5c3a4a8224
commit d06d1e8682
2 changed files with 7 additions and 1 deletions

View file

@ -20,6 +20,7 @@
- カスタム絵文字関連の改善
* ートなどに含まれるemojispopulateEmojiの結果プロキシされたURLではなくオリジナルのURLを指すように
* MFMでx3/x4もしくはscale.x/yが2.5以上に指定されていた場合にはオリジナル品質の絵文字を使用するように
- カスタム絵文字でリアクションできないことがある問題を修正
### Client
-

View file

@ -44,7 +44,12 @@ export class CustomEmojiService {
memoryCacheLifetime: 1000 * 60 * 3, // 3m
fetcher: () => this.emojisRepository.find({ where: { host: IsNull() } }).then(emojis => new Map(emojis.map(emoji => [emoji.name, emoji]))),
toRedisConverter: (value) => JSON.stringify(Array.from(value.values())),
fromRedisConverter: (value) => new Map(JSON.parse(value).map((x: Emoji) => [x.name, x])), // TODO: Date型の変換
fromRedisConverter: (value) => {
return new Map(JSON.parse(value).map((x) => [x.name, {
...x,
updatedAt: new Date(x.updatedAt),
}]));
},
});
}