mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-06-12 21:27:38 +02:00
chore: Fix merge fix for 19.34 target
This commit is contained in:

committed by
oSumAtrIX

parent
fec90fd7f2
commit
053ebe34f0
@ -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;
|
||||
}
|
||||
|
@ -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";
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user