diff options
author | David Robertson <davidr@element.io> | 2021-09-14 11:25:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 11:25:05 +0100 |
commit | 319b8b6bef1a8666b9ef57dfea5030da0e1effc2 (patch) | |
tree | 616a399d8ad06039911ca6b12dc18ca5d4f0badd /synapse/handlers | |
parent | Use direct references for some configuration variables (#10798) (diff) | |
download | synapse-319b8b6bef1a8666b9ef57dfea5030da0e1effc2.tar.xz |
Name the type of token in "Invalid token" messages (#10815)
I had one of these error messages yesterday and assumed it was an invalid auth token (because that was an HTTP query parameter in the test) I was working on. In fact, it was an invalid next batch token for syncing.
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index fbbf6fd834..3ea6270083 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -1347,7 +1347,7 @@ class AuthHandler(BaseHandler): try: res = self.macaroon_gen.verify_short_term_login_token(login_token) except Exception: - raise AuthError(403, "Invalid token", errcode=Codes.FORBIDDEN) + raise AuthError(403, "Invalid login token", errcode=Codes.FORBIDDEN) await self.auth.check_auth_blocking(res.user_id) return res |