diff --git a/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/GlobalConfigExtension.cs b/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/GlobalConfigExtension.cs index 55f796a3b..8cef1e23b 100644 --- a/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/GlobalConfigExtension.cs +++ b/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/GlobalConfigExtension.cs @@ -24,7 +24,7 @@ using Newtonsoft.Json; namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper { public sealed class GlobalConfigExtension { [JsonProperty(Required = Required.DisallowNull)] - public SteamTokenDumperConfig? SteamTokenDumper { get; private set; } + public SteamTokenDumperConfig? SteamTokenDumperPlugin { get; private set; } [JsonProperty(Required = Required.DisallowNull)] public bool SteamTokenDumperPluginEnabled { get; private set; } diff --git a/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/SteamTokenDumperPlugin.cs b/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/SteamTokenDumperPlugin.cs index 7366d9ca0..718b3721b 100644 --- a/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/SteamTokenDumperPlugin.cs +++ b/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/SteamTokenDumperPlugin.cs @@ -70,7 +70,7 @@ namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper { foreach ((string configProperty, JToken configValue) in additionalConfigProperties) { try { switch (configProperty) { - case nameof(GlobalConfigExtension.SteamTokenDumper): + case nameof(GlobalConfigExtension.SteamTokenDumperPlugin): config = configValue.Value(); break;