Fix bugs from feedback

This commit is contained in:
Jamie Curnow
2025-10-28 19:59:00 +10:00
parent 5d6916dcf0
commit 89abb9d559
3 changed files with 7 additions and 7 deletions

View File

@@ -381,14 +381,14 @@ const internalNginx = {
},
/**
* @param {String} host_type
* @param {String} hostType
* @param {Array} hosts
* @returns {Promise}
*/
bulkGenerateConfigs: (host_type, hosts) => {
bulkGenerateConfigs: (hostType, hosts) => {
const promises = [];
hosts.map((host) => {
promises.push(internalNginx.generateConfig(host_type, host));
promises.push(internalNginx.generateConfig(hostType, host));
return true;
});