fix buttons for no contacts

This commit is contained in:
David Benqué 2019-12-09 16:21:48 +00:00
parent b6228421f6
commit 516181acf2

View file

@ -1030,7 +1030,7 @@ define([
name: Messages.login_register, name: Messages.login_register,
onClick: function () { onClick: function () {
common.setLoginRedirect(function () { common.setLoginRedirect(function () {
common.openURL('/login/'); common.gotoURL('/register/');
}); });
} }
}, { }, {
@ -1038,7 +1038,7 @@ define([
name: Messages.login_login, name: Messages.login_login,
onClick: function () { onClick: function () {
common.setLoginRedirect(function () { common.setLoginRedirect(function () {
common.openURL('/register/'); common.gotoURL('/login/');
}); });
} }
} }