diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-08 19:06:34 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-08 19:06:34 -0300 |
commit | 9cc80ef7eff698c0f2891c5326b22d8484850260 (patch) | |
tree | 35dbc1764c065482794d95d2b1c14007264ae064 /game | |
parent | 591a310426df2b33af48efb71bc451f3aedfa0f2 (diff) | |
download | renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.gz renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.bz2 renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.xz renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.zip |
Remove steam.cancel_ticket() in hopes this makes them don't expire weirdly
Diffstat (limited to 'game')
-rw-r--r-- | game/update.rpy | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/game/update.rpy b/game/update.rpy index 8410cc6..9db65bd 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -170,7 +170,6 @@ init python: stdout("Steam login active, user %d" % accId) ## Retrieve new ticket ("token"), send it in Base64 to the API - steam.cancel_ticket() token = steam.get_session_ticket() auth = {"accId": accId, "token": base64.b64encode(token)} time.sleep(1.0) @@ -192,7 +191,6 @@ init python: ## If unsucessful, give up on Steam Auth if (r.status_code != 200): - steam.cancel_ticket() raise Exception("Vault returned code %d" % r.status_code) ## Receive the Vault Token |