This commit is contained in:
2024-11-17 23:10:54 +01:00
parent fc3ce27c51
commit 4adcbef8e4

View File

@@ -44,9 +44,10 @@ class TwitchService:
await eventsub.listen_stream_online(str(streamer.twitch.id), self.on_stream_online)
else:
raise ValueError("Unknown method")
except ValueError as e:
except Exception as e:
if retry <= 0:
raise e
except EventSubSubscriptionConflict:
if method == "listen_channel_update_v2":
sub_type = "channel.update"
elif method == "listen_stream_online":
@@ -61,9 +62,6 @@ class TwitchService:
for sub in subs.data:
if sub.status == "enabled" and sub.type == sub_type:
await self.twitch.delete_eventsub_subscription(sub.id)
except Exception as e:
if retry <= 0:
raise e
await sleep(1)
await self.subscribe_with_retry(method, eventsub, streamer, retry - 1)