mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-23 02:21:10 +01:00
9 lines
233 B
Java
9 lines
233 B
Java
|
package app.revanced.twitch.patches;
|
||
|
|
||
|
import app.revanced.twitch.settings.SettingsEnum;
|
||
|
|
||
|
public class VideoAdsPatch {
|
||
|
public static boolean shouldBlockVideoAds() {
|
||
|
return SettingsEnum.BLOCK_VIDEO_ADS.getBoolean();
|
||
|
}
|
||
|
}
|