Skip to content

Commit 084e0a5

Browse files
fix(YouTube - Return YouTube Dislike): Show Shorts dislikes with new A/B button icons
1 parent 4b818e4 commit 084e0a5

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

extensions/shared/src/main/java/app/revanced/extension/youtube/patches/components/ReturnYouTubeDislikeFilterPatch.java

+3-8
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,10 @@ public ReturnYouTubeDislikeFilterPatch() {
7676
new StringFilterGroup(null, "|shorts_dislike_button.eml")
7777
);
7878

79-
// After the likes icon name is some binary data and then the video id for that specific short.
79+
// After the button identifiers is binary data and then the video id for that specific short.
8080
videoIdFilterGroup.addAll(
81-
// on_shadowed = Video was previously like/disliked before opening.
82-
// off_shadowed = Video was not previously liked/disliked before opening.
83-
new ByteArrayFilterGroup(null, "ic_right_like_on_shadowed"),
84-
new ByteArrayFilterGroup(null, "ic_right_like_off_shadowed"),
85-
86-
new ByteArrayFilterGroup(null, "ic_right_dislike_on_shadowed"),
87-
new ByteArrayFilterGroup(null, "ic_right_dislike_off_shadowed")
81+
new ByteArrayFilterGroup(null, "id.reel_like_button"),
82+
new ByteArrayFilterGroup(null, "id.reel_dislike_button")
8883
);
8984
}
9085

0 commit comments

Comments
 (0)