mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
Fix API crash
This commit is contained in:
parent
5295320b0b
commit
4213d7dc27
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class NinjaAPIWithIOCapture(NinjaAPI):
|
||||||
|
|
||||||
# Add Auth Headers to response
|
# Add Auth Headers to response
|
||||||
api_token = getattr(request, '_api_token', None)
|
api_token = getattr(request, '_api_token', None)
|
||||||
token_expiry = api_token.expires.isoformat() if api_token else 'Never'
|
token_expiry = api_token.expires.isoformat() if api_token and api_token.expires else 'Never'
|
||||||
|
|
||||||
response['X-ArchiveBox-Auth-Method'] = getattr(request, '_api_auth_method', None) or 'None'
|
response['X-ArchiveBox-Auth-Method'] = getattr(request, '_api_auth_method', None) or 'None'
|
||||||
response['X-ArchiveBox-Auth-Expires'] = token_expiry
|
response['X-ArchiveBox-Auth-Expires'] = token_expiry
|
||||||
|
|
Loading…
Reference in a new issue