1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-27 14:48:22 +00:00

Fix for #2603 (Kobo UserKey in request missing due to no kobo account)

This commit is contained in:
Ozzie Isaacs 2023-08-23 21:12:59 +02:00
parent f7ff3e7cba
commit a1899bf582

View File

@ -1047,7 +1047,7 @@ def make_calibre_web_auth_response():
"RefreshToken": RefreshToken, "RefreshToken": RefreshToken,
"TokenType": "Bearer", "TokenType": "Bearer",
"TrackingId": str(uuid.uuid4()), "TrackingId": str(uuid.uuid4()),
"UserKey": content['UserKey'], "UserKey": content.get('UserKey',""),
} }
) )
) )