diff --git a/DiscordChatExporter.Core/Exporting/ChannelExporter.cs b/DiscordChatExporter.Core/Exporting/ChannelExporter.cs index 0abfce35..55de0bd5 100644 --- a/DiscordChatExporter.Core/Exporting/ChannelExporter.cs +++ b/DiscordChatExporter.Core/Exporting/ChannelExporter.cs @@ -86,15 +86,5 @@ public class ChannelExporter(DiscordClient discord) ); } } - - // Throw if no messages were exported - if (messageExporter.MessagesExported <= 0) - { - throw new DiscordChatExporterException( - $"Channel '{request.Channel.Name}' (#{request.Channel.Id}) " - + $"of guild '{request.Guild.Name}' (#{request.Guild.Id}) " - + $"does not contain any matching messages within the specified period." - ); - } } }