From 7d32fc70fe0356aeb59ae475ae45c3a563fcb760 Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Thu, 6 Feb 2025 20:52:49 +0200 Subject: [PATCH] Actually route rate limit preference in GUI --- .../ViewModels/Components/DashboardViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs b/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs index 43da5b0..7582b9c 100644 --- a/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs +++ b/DiscordChatExporter.Gui/ViewModels/Components/DashboardViewModel.cs @@ -123,7 +123,7 @@ public partial class DashboardViewModel : ViewModelBase AvailableChannels = null; SelectedChannels.Clear(); - _discord = new DiscordClient(token); + _discord = new DiscordClient(token, _settingsService.RateLimitPreference); _settingsService.LastToken = token; var guilds = await _discord.GetUserGuildsAsync();