0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 08:38:24 +02:00

Auto-correct the username when logging in if there isn't an @

This commit is contained in:
Kegan Dougal 2014-08-14 16:08:14 +01:00
parent 657ab9ba9d
commit 6f925f61ff

View file

@ -68,6 +68,12 @@ angular.module('LoginController', ['matrixService'])
};
$scope.login = function() {
if ($scope.account.user_id.indexOf("@") !== 0) {
// technically should be the host of account.homeserver
$scope.account.user_id = "@" + $scope.account.user_id + ":" +
$location.host()
}
matrixService.setConfig({
homeserver: $scope.account.homeserver,
user_id: $scope.account.user_id