chore: Fix merge fix for 19.34 target

This commit is contained in:
LisoUseInAIKyrios
2024-10-28 05:21:12 -04:00
committed by oSumAtrIX
parent fec90fd7f2
commit 053ebe34f0
5 changed files with 18 additions and 18 deletions

View File

@ -4,10 +4,10 @@ import app.revanced.extension.youtube.settings.Settings;
@SuppressWarnings("unused")
public final class SlideToSeekPatch {
private static final Boolean SLIDE_TO_SEEK_DISABLED = !Settings.SLIDE_TO_SEEK.get();
private static final boolean SLIDE_TO_SEEK_DISABLED = !Settings.SLIDE_TO_SEEK.get();
public static boolean isSlideToSeekDisabled(boolean isDisabled) {
if (!isDisabled) return isDisabled;
if (!isDisabled) return false;
return SLIDE_TO_SEEK_DISABLED;
}

View File

@ -21,7 +21,7 @@ import app.revanced.extension.youtube.shared.PlayerType;
@SuppressWarnings("unused")
public final class ShortsFilter extends Filter {
public static final Boolean HIDE_SHORTS_NAVIGATION_BAR = Settings.HIDE_SHORTS_NAVIGATION_BAR.get();
private static final boolean HIDE_SHORTS_NAVIGATION_BAR = Settings.HIDE_SHORTS_NAVIGATION_BAR.get();
private final static String REEL_CHANNEL_BAR_PATH = "reel_channel_bar.eml";
/**