diff --git a/composables/timeline.ts b/composables/timeline.ts index c6e42e54..3f6b7b88 100644 --- a/composables/timeline.ts +++ b/composables/timeline.ts @@ -24,6 +24,9 @@ function removeFilteredItems(items: mastodon.v1.Status[], context: mastodon.v1.F if (item.account.bot && !bot) return false + if (item.sensitive && !sensitive) + return false + return true }