1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-17 18:59:57 +00:00

Merge remote-tracking branch 'Synctoken/fix/kobo-sync-token' into Develop

This commit is contained in:
Ozzie Isaacs 2024-05-12 17:56:19 +02:00
commit 014a247847

View File

@ -30,7 +30,7 @@ log = logger.create()
def b64encode_json(json_data):
return b64encode(json.dumps(json_data).encode())
return b64encode(json.dumps(json_data).encode()).decode("utf-8")
# Python3 has a timestamp() method we could be calling, however it's not available in python2.