diff options
-rw-r--r-- | game/update.rpy | 2 |
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) |