Skip to content
Snippets Groups Projects
Commit b7ed3ddf authored by syuilo's avatar syuilo
Browse files

fix(backend): 通知読み込みでエラーが発生する場合がある問題を修正

parent 038365bf
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
- PWA時の絵文字ピッカーの位置をホームバーに重ならないように調整
### Server
-
- 通知読み込みでエラーが発生する場合がある問題を修正
## 13.11.0
......
......@@ -29,6 +29,7 @@ export class FederatedInstanceService {
toRedisConverter: (value) => JSON.stringify(value),
fromRedisConverter: (value) => {
const parsed = JSON.parse(value);
if (parsed == null) return null;
return {
...parsed,
firstRetrievedAt: new Date(parsed.firstRetrievedAt),
......
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