From c8a863f09846e970e119b44d6e61e6fdb0572d08 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Tue, 23 Aug 2016 13:59:10 -0400 Subject: [PATCH] removed some commented code --- Manifest.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Manifest.cs b/Manifest.cs index 255b4f6..bb250ba 100644 --- a/Manifest.cs +++ b/Manifest.cs @@ -305,7 +305,6 @@ public class Manifest public bool SaveAccount(SteamGuardAccount account, bool encrypt, string passKey = null, string salt = null, string iV = null) { if (encrypt && (String.IsNullOrEmpty(passKey) || String.IsNullOrEmpty(salt) || String.IsNullOrEmpty(iV))) return false; - //if (!encrypt && this.Encrypted) return false; string jsonAccount = JsonConvert.SerializeObject(account); @@ -337,7 +336,7 @@ public class Manifest } bool wasEncrypted = this.Encrypted; - this.Encrypted = encrypt;// || this.Encrypted; + this.Encrypted = encrypt; if (!this.Save()) {