Tried to reduce frequency of Twitch API pulls

This commit is contained in:
sigonasr2 2017-09-22 23:33:50 -05:00
parent 967c66040c
commit 3eb312abf8
2 changed files with 45 additions and 37 deletions

Binary file not shown.

View File

@ -138,6 +138,7 @@ public class TwitchModule extends Module{
lastFollowerCheck = FOLLOWERCHECKTIMER; lastFollowerCheck = FOLLOWERCHECKTIMER;
getFollowers(false); getFollowers(false);
popFollowerFromQueue(); popFollowerFromQueue();
isStreamOnline(true);
} }
if (lastFollowerAnnouncement>0) { if (lastFollowerAnnouncement>0) {
lastFollowerAnnouncement--; lastFollowerAnnouncement--;
@ -280,8 +281,12 @@ public class TwitchModule extends Module{
} }
} }
} }
private boolean isStreamOnline() { private boolean isStreamOnline() {
return isStreamOnline(false);
}
private boolean isStreamOnline(boolean update) {
if (update) {
sigIRC.manager.streams().get(TextUtils.getActualChannelName(), new StreamResponseHandler() { sigIRC.manager.streams().get(TextUtils.getActualChannelName(), new StreamResponseHandler() {
@Override @Override
@ -322,6 +327,9 @@ public class TwitchModule extends Module{
}); });
return TwitchModule.streamOnline; return TwitchModule.streamOnline;
} else {
return TwitchModule.streamOnline;
}
//TwitchModule.streamOnline=true; //TwitchModule.streamOnline=true;
//return true; //return true;
} }