1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Correctly handle str/int conversions

This commit is contained in:
Phxntxm 2017-03-12 17:08:49 -05:00
parent 22c4b57991
commit 582e33d907

View file

@ -53,7 +53,6 @@ class Twitch:
# If they're currently online, but saved as not then we'll send our notification
if online and data['live'] == 0:
for s_id in data['servers']:
s_id = int(s_id)
server = self.bot.get_guild(s_id)
if server is None:
continue
@ -64,13 +63,12 @@ class Twitch:
if server_settings is not None:
channel_id = int(server_settings.get('notification_channel', s_id))
else:
channel_id = s_id
channel_id = int(s_id)
channel = server.get_channel(channel_id)
await channel.send("{} has just gone live! View their stream at <{}>".format(member.display_name, data['twitch_url']))
self.bot.loop.create_task(utils.update_content('twitch', {'live': 1}, str(m_id)))
elif not online and data['live'] == 1:
for s_id in data['servers']:
s_id = int(s_id)
server = self.bot.get_guild(s_id)
if server is None:
continue
@ -81,7 +79,7 @@ class Twitch:
if server_settings is not None:
channel_id = int(server_settings.get('notification_channel', s_id))
else:
channel_id = s_id
channel_id = int(s_id)
channel = server.get_channel(channel_id)
await channel.send("{} has just gone offline! View their stream next time at <{}>".format(member.display_name, data['twitch_url']))
self.bot.loop.create_task(utils.update_content('twitch', {'live': 0}, str(m_id)))