Skip to content

Commit

Permalink
fix(YouTube - Hide Shorts components): Hide suggested actions in inco…
Browse files Browse the repository at this point in the history
…gnito mode
  • Loading branch information
LisoUseInAIKyrios committed Apr 16, 2024
1 parent 8e36a01 commit bba421d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ boolean isFiltered(@Nullable String identifier, String path, byte[] protobufBuff
}

if (matchedGroup == suggestedAction) {
if (contentIndex == 0 && suggestedActionsGroupList.check(protobufBufferArray).isFiltered()) {
// Suggested actions can be at the start or in the middle of a path.
if (suggestedActionsGroupList.check(protobufBufferArray).isFiltered()) {
return super.isFiltered(
identifier, path, protobufBufferArray, matchedGroup, contentType, contentIndex
);
Expand Down

0 comments on commit bba421d

Please sign in to comment.