custom asyncForEach() is gone

This commit is contained in:
Johannes Zellner
2020-06-03 23:17:06 +02:00
parent b524da23d5
commit 18ac61e8ab
8 changed files with 28 additions and 43 deletions
+1 -2
View File
@@ -3,7 +3,6 @@
/* global angular */
/* global $ */
/* global async */
/* global asyncForEach */
/* global RSTATES */
/* global ISTATES */
/* global ERROR */
@@ -331,7 +330,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
domains.push({ subdomain: a.subdomain, domain: a.domain });
});
asyncForEach(domains, function (domain, callback) {
async.eachSeries(domains, function (domain, callback) {
if (overwriteDns) return callback();
Client.checkDNSRecords(domain.domain, domain.subdomain, function (error, result) {