about summary refs log tree commit diff
path: root/src/state/models
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-06-30 11:38:22 -0500
committerGitHub <noreply@github.com>2023-06-30 11:38:22 -0500
commit010588ee7c4064d01b10e75a69ac5e89ae839233 (patch)
treec26da1e6a82bbbee8bf18f016c52ef90002e0421 /src/state/models
parented5a88d9d807c471a548bd9f23e0dcbf60c6cf6e (diff)
downloadvoidsky-010588ee7c4064d01b10e75a69ac5e89ae839233.tar.zst
Fix thread muting (#932)
Diffstat (limited to 'src/state/models')
-rw-r--r--src/state/models/content/post-thread-item.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/state/models/content/post-thread-item.ts b/src/state/models/content/post-thread-item.ts
index c33415507..9b8f42b3b 100644
--- a/src/state/models/content/post-thread-item.ts
+++ b/src/state/models/content/post-thread-item.ts
@@ -61,8 +61,9 @@ export class PostThreadItemModel {
     }
     return this.post.uri
   }
+
   get isThreadMuted() {
-    return this.rootStore.mutedThreads.uris.has(this.rootUri)
+    return this.data.isThreadMuted
   }
 
   get labelInfo(): PostLabelInfo {