pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix issue where sync fails if using older sync backend

authored by

MaltronCraft Network and committed by
GitHub
2884c0a6 bf774106

+1 -1
+1 -1
src/backend/accounts/user.ts
··· 64 64 const entries = responses.map((bookmark) => { 65 65 const item: BookmarkMediaItem = { 66 66 ...bookmark.meta, 67 - group: bookmark.group.length > 0 ? bookmark.group : undefined, 67 + group: bookmark.group?.length > 0 ? bookmark.group : undefined, 68 68 favoriteEpisodes: bookmark.favoriteEpisodes, 69 69 updatedAt: new Date(bookmark.updatedAt).getTime(), 70 70 };