forked from forks/microblog.pub
Tweak error wording
This commit is contained in:
parent
b99552384c
commit
9093659b0a
2 changed files with 2 additions and 2 deletions
|
@ -213,6 +213,6 @@ def verify_csrf_token(
|
|||
logger.exception("Failed to verify CSRF token")
|
||||
raise HTTPException(
|
||||
status_code=403,
|
||||
detail=f"The security token expired, {please_try_again}",
|
||||
detail=f"The security token has expired, {please_try_again}",
|
||||
)
|
||||
return None
|
||||
|
|
|
@ -276,7 +276,7 @@ async def _check_access_token(
|
|||
if now() > access_token_info.created_at.replace(tzinfo=timezone.utc) + timedelta(
|
||||
seconds=access_token_info.expires_in
|
||||
):
|
||||
logger.info("Access token is expired")
|
||||
logger.info("Access token has expired")
|
||||
return False, None
|
||||
|
||||
return True, access_token_info
|
||||
|
|
Loading…
Reference in a new issue