Skip to content

Commit

Permalink
feat(youtube): bump patches compatibility to v17.43.36 (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
OxrxL committed Nov 1, 2022
1 parent b5a93a0 commit 6da66be
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -4,7 +4,9 @@

public class HideEmailAddressPatch {
//Used by app.revanced.patches.youtube.layout.personalinformation.patch.HideEmailAddressPatch
public static boolean hideEmailAddress() {
return SettingsEnum.HIDE_EMAIL_ADDRESS.getBoolean();
public static int hideEmailAddress(int originalValue) {
if (SettingsEnum.HIDE_EMAIL_ADDRESS.getBoolean())
return 8;
return originalValue;
}
}

0 comments on commit 6da66be

Please sign in to comment.