From 19238b9326696bcae9ce6542a3b43b8a42a06d94 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 2 Nov 2016 17:57:27 +0000 Subject: [PATCH] Use the defaults if given a blank config file This allows Vector to load from file:// URIs without breaking if there is no config file (because we explicitly look for 404s, and file:// URIs don't return 404s). --- src/vector/index.js | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/vector/index.js b/src/vector/index.js index f260ac01f1..5d00d07823 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -179,14 +179,27 @@ function getConfig() { let deferred = q.defer(); request( - { method: "GET", url: "config.json", json: true }, + { method: "GET", url: "config.json" }, (err, response, body) => { if (err || response.status < 200 || response.status >= 300) { + // Lack of a config isn't an error, we should + // just use the defaults. + // Also treat a blank config as no config because + // we don't get 404s from file: URIs so this is the + // only way we can not fail if the file doesn't exist + // when loading from a file:// URI. + if (( err && err.response.status == 404) || body == '') { + deferred.resolve({}); + } deferred.reject({err: err, response: response}); return; } - deferred.resolve(body); + // We parse the JSON ourselves rather than use the JSON + // parameter, since this throws a parse error on empty + // which breaks if there's no config.json and we're + // loading from the filesystem (see above). + deferred.resolve(JSON.parse(body)); } ); @@ -239,13 +252,7 @@ async function loadApp() { try { configJson = await getConfig(); } catch (e) { - // On 404 errors, carry on without a config, - // but on other errors, fail, otherwise it will - // lead to subtle errors where the app runs with - // the default config if it fails to fetch config.json. - if (e.response.status != 404) { - configError = e; - } + configError = e; } console.log("Vector starting at "+window.location);