Fix form validation for external domains

This commit is contained in:
Johannes Zellner
2017-05-03 15:25:24 +02:00
parent be5221d5b8
commit 3e6295de92
3 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ angular.module('Application').controller('AppsController', ['$scope', '$location
},
isAltDomainValid: function () {
return ngTld.tldExists($scope.appConfigure.location);
return ngTld.isValid($scope.appConfigure.location);
},
isAltDomainSubdomain: function () {