From c1bde725259f2f056f465dc9c752bb4f1ebe3363 Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:43:52 -0400 Subject: [PATCH] fix(YouTube - Hide Shorts components): Hide new type of Short --- .../integrations/youtube/patches/components/ShortsFilter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/app/revanced/integrations/youtube/patches/components/ShortsFilter.java b/app/src/main/java/app/revanced/integrations/youtube/patches/components/ShortsFilter.java index 41369c2f..3e83423e 100644 --- a/app/src/main/java/app/revanced/integrations/youtube/patches/components/ShortsFilter.java +++ b/app/src/main/java/app/revanced/integrations/youtube/patches/components/ShortsFilter.java @@ -85,6 +85,8 @@ public final class ShortsFilter extends Filter { shortsCompactFeedVideoPath = new StringFilterGroup(null, // Shorts that appear in the feed/search when the device is using tablet layout. "compact_video.eml", + // 'video_lockup_with_attachment.eml' is shown instead of 'compact_video.eml' for some users + "video_lockup_with_attachment.eml", // Search results that appear in a horizontal shelf. "video_card.eml");