summaryrefslogtreecommitdiff
path: root/internal/cache/cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cache/cache.go')
-rw-r--r--internal/cache/cache.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/cache/cache.go b/internal/cache/cache.go
index d05b85a15..54777441f 100644
--- a/internal/cache/cache.go
+++ b/internal/cache/cache.go
@@ -49,6 +49,10 @@ type Caches struct {
// Timelines ...
Timelines TimelineCaches
+ // Mutes provides access to the item mutes
+ // cache. (used by the item mutes filter).
+ Mutes MutesCache
+
// Visibility provides access to the item visibility
// cache. (used by the visibility filter).
Visibility VisibilityCache
@@ -125,6 +129,7 @@ func (c *Caches) Init() {
c.initWebfinger()
c.initWebPushSubscription()
c.initWebPushSubscriptionIDs()
+ c.initMutes()
c.initVisibility()
}