STD: Correct extra config path

This commit is contained in:
JustArchi 2021-05-03 12:21:00 +02:00
parent 7f283be03a
commit 823f077cf2
2 changed files with 2 additions and 2 deletions

View file

@ -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; }

View file

@ -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<SteamTokenDumperConfig>();
break;