mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
STD: Correct extra config path
This commit is contained in:
@@ -24,7 +24,7 @@ using Newtonsoft.Json;
|
|||||||
namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper {
|
namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper {
|
||||||
public sealed class GlobalConfigExtension {
|
public sealed class GlobalConfigExtension {
|
||||||
[JsonProperty(Required = Required.DisallowNull)]
|
[JsonProperty(Required = Required.DisallowNull)]
|
||||||
public SteamTokenDumperConfig? SteamTokenDumper { get; private set; }
|
public SteamTokenDumperConfig? SteamTokenDumperPlugin { get; private set; }
|
||||||
|
|
||||||
[JsonProperty(Required = Required.DisallowNull)]
|
[JsonProperty(Required = Required.DisallowNull)]
|
||||||
public bool SteamTokenDumperPluginEnabled { get; private set; }
|
public bool SteamTokenDumperPluginEnabled { get; private set; }
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper {
|
|||||||
foreach ((string configProperty, JToken configValue) in additionalConfigProperties) {
|
foreach ((string configProperty, JToken configValue) in additionalConfigProperties) {
|
||||||
try {
|
try {
|
||||||
switch (configProperty) {
|
switch (configProperty) {
|
||||||
case nameof(GlobalConfigExtension.SteamTokenDumper):
|
case nameof(GlobalConfigExtension.SteamTokenDumperPlugin):
|
||||||
config = configValue.Value<SteamTokenDumperConfig>();
|
config = configValue.Value<SteamTokenDumperConfig>();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user