mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Fix wrong status after reedeming the key
This commit is contained in:
parent
33b42fb76c
commit
03885babf6
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ namespace ArchiSteamFarm {
|
|||
|
||||
internal sealed class PurchaseResponseCallback : CallbackMsg {
|
||||
internal enum EPurchaseResult {
|
||||
Unknown = 0,
|
||||
OK = 1,
|
||||
Unknown = -1,
|
||||
OK = 0,
|
||||
AlreadyOwned = 9,
|
||||
InvalidKey = 14,
|
||||
DuplicatedKey = 15,
|
||||
|
|
Loading…
Reference in a new issue