This commit is contained in:
JustArchi
2018-02-26 09:08:01 +01:00
parent 4a5665c92b
commit 1afc8f06af

View File

@@ -118,11 +118,11 @@ namespace ArchiSteamFarm {
}
lock (GamesToRedeemInBackground) {
if (!GamesToRedeemInBackground.Contains(key)) {
if (GamesToRedeemInBackground.Contains(key)) {
return;
}
GamesToRedeemInBackground.Remove(key);
GamesToRedeemInBackground.Add(key, game);
}
await Save().ConfigureAwait(false);