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 271656b commit b058ef2Copy full SHA for b058ef2
bot.py
@@ -114,7 +114,7 @@ def CheckLiveStreams(self):
114
self.newCacheLiveStreams = self.JSONtoSet(self.GetJSON(), 'live')
115
for newStream in self.newCacheLiveStreams:
116
for oldStream in self.cacheLiveStreams:
117
- if newStream['title'] == oldStream['title']:
+ if newStream['url'] == oldStream['url']:
118
break
119
else:
120
self.Send(self.channel, '"' + newStream['title'] + '" just went live!, check it out here: ' + newStream['url'])
0 commit comments