diff options
Diffstat (limited to 'src/state/models/feeds/post.ts')
-rw-r--r-- | src/state/models/feeds/post.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/feeds/post.ts b/src/state/models/feeds/post.ts index 0c411d448..18a90ee82 100644 --- a/src/state/models/feeds/post.ts +++ b/src/state/models/feeds/post.ts @@ -67,7 +67,7 @@ export class PostsFeedItemModel { } get rootUri(): string { - if (this.reply?.root.uri) { + if (typeof this.reply?.root.uri === 'string') { return this.reply.root.uri } return this.post.uri |