summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-10-24 14:55:08 -0300
committerJesusaves <cpntb1@ymail.com>2022-10-24 14:55:08 -0300
commita3d8d1108c92bfafcdcac7c91348b25a888014fe (patch)
treebedab7d332e01a4de7aff53167ad70f8e6d55958
parent403da6bb4e9de96a1aa6c72b42e301fe1634a00b (diff)
downloadrenpy-a3d8d1108c92bfafcdcac7c91348b25a888014fe.tar.gz
renpy-a3d8d1108c92bfafcdcac7c91348b25a888014fe.tar.bz2
renpy-a3d8d1108c92bfafcdcac7c91348b25a888014fe.tar.xz
renpy-a3d8d1108c92bfafcdcac7c91348b25a888014fe.zip
Fix a bug, but Ren'Py also has a bug of its own
-rw-r--r--game/update.rpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/update.rpy b/game/update.rpy
index de17df7..0accc32 100644
--- a/game/update.rpy
+++ b/game/update.rpy
@@ -202,7 +202,7 @@ init python:
## Retrieve new ticket ("token"), send it in Base64 to the API
token = steam.get_session_ticket()
- auth = {"accId": accId, "token": base64.b64encode(token)}
+ auth = {"accId": accId, "token": base64.b64encode(token).decode()}
time.sleep(0.75)
status_update(_("Waiting for Vault reply..."), 85)