Skip to content

Commit

Permalink
fix(YouTube - Return YouTube Dislike): Show Shorts dislikes with new …
Browse files Browse the repository at this point in the history
…A/B button icons
  • Loading branch information
LisoUseInAIKyrios committed Nov 9, 2024
1 parent 4b818e4 commit 084e0a5
Showing 1 changed file with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,10 @@ public ReturnYouTubeDislikeFilterPatch() {
new StringFilterGroup(null, "|shorts_dislike_button.eml")
);

// After the likes icon name is some binary data and then the video id for that specific short.
// After the button identifiers is binary data and then the video id for that specific short.
videoIdFilterGroup.addAll(
// on_shadowed = Video was previously like/disliked before opening.
// off_shadowed = Video was not previously liked/disliked before opening.
new ByteArrayFilterGroup(null, "ic_right_like_on_shadowed"),
new ByteArrayFilterGroup(null, "ic_right_like_off_shadowed"),

new ByteArrayFilterGroup(null, "ic_right_dislike_on_shadowed"),
new ByteArrayFilterGroup(null, "ic_right_dislike_off_shadowed")
new ByteArrayFilterGroup(null, "id.reel_like_button"),
new ByteArrayFilterGroup(null, "id.reel_dislike_button")
);
}

Expand Down

0 comments on commit 084e0a5

Please sign in to comment.