From d832351bcd39a43d0b80fb2e00743732bbe5403c Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 10 Oct 2024 17:52:24 -0400 Subject: [PATCH] Fixes the ability to see muted lists in Shorts --- .../java/com/vitorpamplona/amethyst/ui/dal/VideoFeedFilter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/VideoFeedFilter.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/VideoFeedFilter.kt index bd3042649..6cdacc81c 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/VideoFeedFilter.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/dal/VideoFeedFilter.kt @@ -72,7 +72,7 @@ class VideoFeedFilter( (noteEvent is FileStorageHeaderEvent && noteEvent.isOneOf(SUPPORTED_VIDEO_FEED_MIME_TYPES_SET)) ) && params.match(noteEvent) && - account.isAcceptable(it) + (params.isHiddenList || account.isAcceptable(it)) } fun buildFilterParams(account: Account): FilterByListParams =