We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24c0b2d commit 3c55a7fCopy full SHA for 3c55a7f
source/tv/phantombot/cache/TwitchCache.java
@@ -168,10 +168,8 @@ public void run() {
168
*/
169
private void updateClips() {
170
String doCheckClips = PhantomBot.instance().getDataStore().GetString("clipsSettings", "", "toggle");
171
- if (doCheckClips == null) {
172
- return;
173
- }
174
- if (doCheckClips.equals("false")) {
+ String discordDoClipsCheck = PhantomBot.instance().getDataStore().GetString("discordSettings", "", "clipsToggle");
+ if ((doCheckClips == null || doCheckClips.equals("false")) && (discordDoClipsCheck == null || discordDoClipsCheck.equals("false"))) {
175
return;
176
}
177
0 commit comments