Merge pull request #5256 from aaronraimist/logout-correct-error

Show correct error when logging out and access token is missing
This commit is contained in:
Erik Johnston 2019-05-30 13:33:44 +01:00 committed by GitHub
commit 45f5d8f3fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 18 deletions

1
changelog.d/5256.bugfix Normal file
View File

@ -0,0 +1 @@
Show the correct error when logging out and access token is missing.

View File

@ -17,8 +17,6 @@ import logging
from twisted.internet import defer from twisted.internet import defer
from synapse.api.errors import AuthError
from .base import ClientV1RestServlet, client_path_patterns from .base import ClientV1RestServlet, client_path_patterns
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@ -38,15 +36,8 @@ class LogoutRestServlet(ClientV1RestServlet):
@defer.inlineCallbacks @defer.inlineCallbacks
def on_POST(self, request): def on_POST(self, request):
try:
requester = yield self.auth.get_user_by_req(request) requester = yield self.auth.get_user_by_req(request)
except AuthError:
# this implies the access token has already been deleted.
defer.returnValue((401, {
"errcode": "M_UNKNOWN_TOKEN",
"error": "Access Token unknown or expired"
}))
else:
if requester.device_id is None: if requester.device_id is None:
# the acccess token wasn't associated with a device. # the acccess token wasn't associated with a device.
# Just delete the access token # Just delete the access token