diff --git a/src/appstore.js b/src/appstore.js index 1678f62d2..b4910ccfe 100644 --- a/src/appstore.js +++ b/src/appstore.js @@ -121,7 +121,7 @@ async function getSubscription() { if (typeof response.body.features[f] !== 'undefined') gFeatures[f] = response.body.features[f]; if (response.body.features[f] === null) gFeatures[f] = 100000; // null essentially means unlimited } - safe.fs.writeFileSync(paths.FEATURES_INFO_FILE, JSON.stringify(gFeatures), 'utf8'); + safe.fs.writeFileSync(paths.FEATURES_INFO_FILE, JSON.stringify(gFeatures, null, 2), 'utf8'); return response.body; }