mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-22 14:41:10 +01:00
10 lines
234 B
Java
10 lines
234 B
Java
package app.revanced.twitch.patches;
|
|
|
|
import app.revanced.twitch.settings.SettingsEnum;
|
|
|
|
public class AudioAdsPatch {
|
|
public static boolean shouldBlockAudioAds() {
|
|
return SettingsEnum.BLOCK_AUDIO_ADS.getBoolean();
|
|
}
|
|
}
|