Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix data loss on notifications-view update

+3 -3
+3 -3
src/state/models/notifications-view.ts
··· 42 42 this.copy(v) 43 43 } 44 44 45 - copy(v: GroupedNotification) { 45 + copy(v: GroupedNotification, preserve = false) { 46 46 this.uri = v.uri 47 47 this.cid = v.cid 48 48 this.author = v.author ··· 58 58 new NotificationsViewItemModel(this.rootStore, '', add), 59 59 ) 60 60 } 61 - } else { 61 + } else if (!preserve) { 62 62 this.additional = undefined 63 63 } 64 64 } ··· 322 322 item2 => item.uri === item2.uri && item.indexedAt === item2.indexedAt, 323 323 ) 324 324 if (existingItem) { 325 - existingItem.copy(item) 325 + existingItem.copy(item, true) 326 326 } 327 327 } 328 328 }