Skip to content
This repository was archived by the owner on Oct 26, 2024. It is now read-only.

Commit 4c21791

Browse files
fix typos
1 parent 200f972 commit 4c21791

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app/src/main/java/app/revanced/integrations/youtube/patches/FullscreenSeekbarThumbnailsPatch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@SuppressWarnings("unused")
66
public class FullscreenSeekbarThumbnailsPatch {
77

8-
private static final Boolean SEEKBAR_FULLSCREEN_HIGH_QUALITY_ENABLED = Settings.SEEKBAR_FULLSCREEN_HIGH_QUALITY.get();
8+
private static final boolean SEEKBAR_FULLSCREEN_HIGH_QUALITY_ENABLED = Settings.SEEKBAR_FULLSCREEN_HIGH_QUALITY.get();
99

1010
/**
1111
* Injection point.

app/src/main/java/app/revanced/integrations/youtube/patches/SlideToSeekPatch.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
@SuppressWarnings("unused")
66
public final class SlideToSeekPatch {
7-
private static final Boolean SLIDE_TO_SEEK_DISABLED = !Settings.SLIDE_TO_SEEK.get();
7+
private static final boolean SLIDE_TO_SEEK_DISABLED = !Settings.SLIDE_TO_SEEK.get();
88

99
public static boolean isSlideToSeekDisabled(boolean isDisabled) {
10-
if (!isDisabled) return isDisabled;
10+
if (!isDisabled) return false;
1111

1212
return SLIDE_TO_SEEK_DISABLED;
1313
}

app/src/main/java/app/revanced/integrations/youtube/patches/components/ShortsFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
@SuppressWarnings("unused")
2323
public final class ShortsFilter extends Filter {
24-
public static final Boolean HIDE_SHORTS_NAVIGATION_BAR = Settings.HIDE_SHORTS_NAVIGATION_BAR.get();
24+
public static final boolean HIDE_SHORTS_NAVIGATION_BAR = Settings.HIDE_SHORTS_NAVIGATION_BAR.get();
2525
private final static String REEL_CHANNEL_BAR_PATH = "reel_channel_bar.eml";
2626

2727
/**

0 commit comments

Comments
 (0)