This commit is contained in:
JustArchi
2019-04-24 10:49:37 +02:00
parent d61c42c129
commit 8a483ddced
2 changed files with 11 additions and 0 deletions

View File

@@ -399,6 +399,16 @@ namespace ArchiSteamFarm {
return;
}
try {
string envCryptKey = Environment.GetEnvironmentVariable(SharedInfo.EnvironmentVariableCryptKey);
if (!string.IsNullOrEmpty(envCryptKey)) {
HandleCryptKeyArgument(envCryptKey);
}
} catch (Exception e) {
ASF.ArchiLogger.LogGenericException(e);
}
bool cryptKeyNext = false;
foreach (string arg in args) {