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

pull/2871/head
Ozzie Isaacs 9 months ago
parent f7ff3e7cba
commit a1899bf582

@ -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',""),
} }
) )
) )

Loading…
Cancel
Save