From 934e39b62ac8adbb9791d434f8891e5e790a799c Mon Sep 17 00:00:00 2001 From: cgeek <cem.moreau@gmail.com> Date: Wed, 25 Nov 2015 21:44:24 +0100 Subject: [PATCH] Fix #232 cannot change DNS by using "wizard network" --- app/lib/wizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/wizard.js b/app/lib/wizard.js index 16e4b3649..37961c9ac 100644 --- a/app/lib/wizard.js +++ b/app/lib/wizard.js @@ -269,7 +269,7 @@ function networkConfiguration(conf, done) { operations = operations.concat(getUseUPnPOperations(conf)); } - async.waterfall(operations, next); + async.waterfall(operations.concat(getHostnameOperations(conf, false)), next); } ], done); } -- GitLab