mirror of
https://github.com/janeczku/calibre-web.git
synced 2025-04-02 22:35:28 +02:00
Fix for #2603 (Kobo UserKey in request missing due to no kobo account)
This commit is contained in:
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…
x
Reference in New Issue
Block a user