Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTrunk committed Jan 27, 2024
1 parent 967e0de commit 5dbc313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/domainService.js
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ async function generateAndReplaceMainApplicationHaproxyConfig(isGmode = false, t
if (isGmode) {
const updatingConfig = JSON.parse(JSON.stringify(recentlyConfiguredApps));
// merge recentlyConfiguredApps with currently configuredApps
for (const app of updatingConfig) {
for (const app of configuredApps) {
let appExists = recentlyConfiguredApps.find((a) => a.appName === app.appName);
if (!appExists) {
updatingConfig.push(app);
Expand Down

0 comments on commit 5dbc313

Please sign in to comment.