diff --git a/TPP.Core/TwitchApi.cs b/TPP.Core/TwitchApi.cs index 44393c2f..9569c537 100644 --- a/TPP.Core/TwitchApi.cs +++ b/TPP.Core/TwitchApi.cs @@ -44,21 +44,18 @@ private async Task Retrying(TwitchApiProvider apiProvider, Func= 500 and < 600: // issues on Twitch's end may be transient and often don't occurr a second time - _logger.LogDebug(ex, "Retryable TwitchAPI 500 server error occurred: {Error}", twitchResponse); return await action(await apiProvider.Get()); default: // otherwise, assume it's an actual error with our request and don't retry it - _logger.LogError(ex, "Unretryable TwitchAPI error occurred: {Error}", twitchResponse); throw; } }