Skip to content
Snippets Groups Projects
Commit 6ea057f8 authored by tamaina's avatar tamaina
Browse files

fix type in CustomEmojiService

parent b7d056fb
No related branches found
No related tags found
No related merge requests found
......@@ -46,9 +46,9 @@ export class CustomEmojiService {
toRedisConverter: (value) => JSON.stringify(Array.from(value.values())),
fromRedisConverter: (value) => {
if (!Array.isArray(JSON.parse(value))) return undefined; // 古いバージョンの壊れたキャッシュが残っていることがある(そのうち消す)
return new Map(JSON.parse(value).map((x) => [x.name, {
return new Map(JSON.parse(value).map((x: Emoji) => [x.name, {
...x,
updatedAt: new Date(x.updatedAt),
updatedAt: x.updatedAt && new Date(x.updatedAt),
}]));
},
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment