diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-04 14:04:35 +0200 |
---|---|---|
committer | Paul "LeoNerd" Evans <paul@matrix.org> | 2014-09-04 13:15:09 +0100 |
commit | 9faf7807400c83e51f2be8ae1174e4401cb3c67e (patch) | |
tree | e88c82f0b445091fbf23d0ba55aff699699fdf91 /webclient/login/register-controller.js | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse (diff) | |
download | synapse-9faf7807400c83e51f2be8ae1174e4401cb3c67e.tar.xz |
Fixed registration flow when registering with matrixID & password and no email
Diffstat (limited to '')
-rw-r--r-- | webclient/login/register-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/login/register-controller.js b/webclient/login/register-controller.js index b7584a7d33..5a14964248 100644 --- a/webclient/login/register-controller.js +++ b/webclient/login/register-controller.js @@ -82,7 +82,7 @@ angular.module('RegisterController', ['matrixService']) } ); } else { - registerWithMxidAndPassword($scope.account.desired_user_id, $scope.account.pwd1); + $scope.registerWithMxidAndPassword($scope.account.desired_user_id, $scope.account.pwd1); } }; |