Skip to content

Commit

Permalink
Fix #102
Browse files Browse the repository at this point in the history
Resolve #102 with adding UseInteractionSnowflakeDate = false
  • Loading branch information
thomasloupe committed May 6, 2024
1 parent 9b13571 commit 025030b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Slackord/Classes/DiscordBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public async Task MainAsync(string discordToken)
// Configure the DiscordSocketClient.
DiscordSocketConfig _config = new()
{
GatewayIntents = GatewayIntents.DirectMessages | GatewayIntents.GuildMessages | GatewayIntents.Guilds
GatewayIntents = GatewayIntents.DirectMessages | GatewayIntents.GuildMessages | GatewayIntents.Guilds,
UseInteractionSnowflakeDate = false
};

Expand Down
2 changes: 1 addition & 1 deletion Slackord/Classes/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ internal class Version
{
public static string GetVersion()
{
string version = "v4.3.3";
string version = "v4.3.4";

return version;
}
Expand Down

0 comments on commit 025030b

Please sign in to comment.