Add checks for message content intent on bot accounts

Related to #918
This commit is contained in:
Tyrrrz
2022-09-16 23:04:18 +03:00
parent cc1ad8b435
commit 06a4b6a8e6
3 changed files with 19 additions and 1 deletions

View File

@@ -41,4 +41,7 @@ Failed to perform an HTTP request.
internal static DiscordChatExporterException ChannelIsEmpty() =>
new("No messages found for the specified period.");
internal static DiscordChatExporterException MessageContentIntentMissing() =>
new("Failed to retrieve message content because the bot doesn't have the Message Content Intent enabled.");
}