summaryrefslogtreecommitdiff
path: root/service/pixelated/authentication.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/pixelated/authentication.py')
-rw-r--r--service/pixelated/authentication.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/service/pixelated/authentication.py b/service/pixelated/authentication.py
index a8326fb9..02b43a1e 100644
--- a/service/pixelated/authentication.py
+++ b/service/pixelated/authentication.py
@@ -21,7 +21,8 @@ class Authenticator(object):
@inlineCallbacks
def _srp_auth(self, username, password):
try:
- auth = yield authenticate(self._leap_provider, username, password)
+ extracted_username = self.extract_username(username)
+ auth = yield authenticate(self._leap_provider, extracted_username, password)
except SRPAuthError:
raise UnauthorizedLogin()