Resolve CA2000

This commit is contained in:
JustArchi
2021-05-07 18:55:50 +02:00
parent 1661cf4be9
commit 809a4bbfbf
6 changed files with 19 additions and 12 deletions

View File

@@ -121,10 +121,10 @@ namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper {
if (globalCache == null) {
ASF.ArchiLogger.LogGenericError(string.Format(CultureInfo.CurrentCulture, Strings.FileCouldNotBeLoadedFreshInit, nameof(GlobalCache)));
globalCache = new GlobalCache();
GlobalCache = new GlobalCache();
} else {
GlobalCache = globalCache;
}
GlobalCache = globalCache;
}
TimeSpan startIn = TimeSpan.FromMinutes(Utilities.RandomNext(SharedInfo.MinimumMinutesBeforeFirstUpload, SharedInfo.MaximumMinutesBeforeFirstUpload));