From 81336ae3ee9661e91e865993904b6a88c28fc3de Mon Sep 17 00:00:00 2001 From: Lala Sabathil Date: Mon, 16 Dec 2024 14:52:02 +0100 Subject: [PATCH] fix: fix missing value copy in config --- DisCatSharp/DiscordConfiguration.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DisCatSharp/DiscordConfiguration.cs b/DisCatSharp/DiscordConfiguration.cs index cf3a1ef5d..daec84b35 100644 --- a/DisCatSharp/DiscordConfiguration.cs +++ b/DisCatSharp/DiscordConfiguration.cs @@ -82,6 +82,7 @@ public DiscordConfiguration(DiscordConfiguration other) this.LoggerFactory = other.LoggerFactory; this.MobileStatus = other.MobileStatus; this.AutoRefreshChannelCache = other.AutoRefreshChannelCache; + this.ApiChannel = other.ApiChannel; this.ApiVersion = other.ApiVersion; this.ServiceProvider = other.ServiceProvider; this.Override = other.Override;