auth: Check for DevAuthBackend being enabled earlier.

This commit is contained in:
Tim Abbott 2017-11-21 12:19:58 -08:00
parent 07bc31f818
commit fa8eab303a
1 changed files with 2 additions and 2 deletions

View File

@ -538,11 +538,11 @@ class DevAuthBackend(ZulipAuthMixin):
assert dev_auth_username is not None
if realm is None:
return None
if not dev_auth_enabled(realm):
return None
user_profile = common_get_active_user_by_email(dev_auth_username, return_data=return_data)
if user_profile is None:
return None
if not dev_auth_enabled(realm):
return None
assert realm == user_profile.realm
return user_profile