diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-08-22 16:36:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 16:36:49 -0700 |
commit | 54706a04379127694be24461fdfb5f76c576fce0 (patch) | |
tree | 9477a27880bc1e87d584650cb5a5820a4fb087b6 /src/state/models/feeds/notifications.ts | |
parent | fcea27ea0b718ae3ac87d7efd0970e01ab175aca (diff) | |
download | voidsky-54706a04379127694be24461fdfb5f76c576fce0.tar.zst |
Diffstat (limited to 'src/state/models/feeds/notifications.ts')
-rw-r--r-- | src/state/models/feeds/notifications.ts | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/state/models/feeds/notifications.ts b/src/state/models/feeds/notifications.ts index 50a411379..f52853070 100644 --- a/src/state/models/feeds/notifications.ts +++ b/src/state/models/feeds/notifications.ts @@ -225,10 +225,22 @@ export class NotificationsFeedItemModel { } setAdditionalData(additionalPost: AppBskyFeedDefs.PostView) { - this.additionalPost = PostThreadModel.fromPostView( - this.rootStore, - additionalPost, - ) + if (this.additionalPost) { + this.additionalPost._replaceAll({ + success: true, + headers: {}, + data: { + thread: { + post: additionalPost, + }, + }, + }) + } else { + this.additionalPost = PostThreadModel.fromPostView( + this.rootStore, + additionalPost, + ) + } } } |