diff --git a/webadmin/src/views/settings.js b/webadmin/src/views/settings.js index 744779bad..81b506226 100644 --- a/webadmin/src/views/settings.js +++ b/webadmin/src/views/settings.js @@ -453,7 +453,7 @@ angular.module('Application').controller('SettingsController', ['$scope', '$loca // nothing to check if mail is not enabled if (!$scope.mailConfig.enabled) return; - Client.showExpectedDnsRecords(function (error, dnsRecords) { + Client.getExpectedDnsRecords(function (error, dnsRecords) { if (error) return callback(error); $scope.expectedDnsRecords = dnsRecords;