From bf21b43744c3006c574880cc97fe9d3c3eb8a47d Mon Sep 17 00:00:00 2001 From: Ruben Taelman Date: Wed, 28 Nov 2018 12:09:52 +0100 Subject: [PATCH] Fix crash when running solid init --- bin/lib/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lib/options.js b/bin/lib/options.js index 9377771b9..47c2241d2 100644 --- a/bin/lib/options.js +++ b/bin/lib/options.js @@ -324,7 +324,7 @@ module.exports = [ name: 'server-name', help: 'A name for your server (not required, but will be presented on your server\'s frontpage)', prompt: true, - default: answers => new URL(answers.serverUri).hostname + default: answers => new URL(answers['server-uri']).hostname }, { name: 'server-description',