SteamAuth icon indicating copy to clipboard operation
SteamAuth copied to clipboard

JSON property "status" is not always an integer

Open guihkx opened this issue 8 years ago • 1 comments

I have 5 accounts linked to my android phone, but only my main account SteamAuth is having trouble with. That's because its status property is set to null:

{
    "shared_secret" : "hidden",
    "serial_number" : "hidden",
    "revocation_code" : "hidden",
    "uri" : "hidden",
    "server_time" : "1449433185",
    "account_name" : "hidden",
    "token_gid" : "hidden",
    "identity_secret" : "hidden",
    "secret_1" : "hidden",
    "status": null,
    "steamguard_scheme": 2,
    "steamid" : "XXXXXXXXXXXXXXXXX"
}

All my other accounts have status set to 1. Don't ask me why, I'm a simple end-user. :~ So programs that uses SteamAuth (ArchiSteamFarm, SteamDesktopAuthenticator) always fail to import this particular account, throwing this error (from SteamDesktopAuthenticator):

http://pastebin.com/raw/npnTqX3h

I should also note that using WinAuth to import this account from my phone, works fine.

guihkx avatar Mar 12 '16 21:03 guihkx

Just wanted to confirm this issue. status expects int, while it should be int?.

JustArchi avatar Mar 14 '16 21:03 JustArchi