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
1 changed files with 1 additions and 1 deletions

View File

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