diff --git a/src/NadekoBot/Modules/Utility/Services/RepeaterService.cs b/src/NadekoBot/Modules/Utility/Services/RepeaterService.cs index 33b776e74..08c8245ef 100644 --- a/src/NadekoBot/Modules/Utility/Services/RepeaterService.cs +++ b/src/NadekoBot/Modules/Utility/Services/RepeaterService.cs @@ -218,7 +218,7 @@ where ((guildid >> 22) % {_creds.TotalShards}) == {_client.ShardId};") var channel = _client.GetChannel(repeater.ChannelId) as ITextChannel; if (channel is null) - channel = await _client.Rest.GetChannelAsync(repeater.ChannelId) as ITextChannel; + try { channel = await _client.Rest.GetChannelAsync(repeater.ChannelId) as ITextChannel; } catch { } if (channel is null) {