From 15ca3a8b71a44341617820662b59715fcf734d45 Mon Sep 17 00:00:00 2001 From: Todd Halfpenny Date: Wed, 5 Jul 2017 09:36:01 +0100 Subject: [PATCH] Update to match update of underlying SFDX CLI response --- main.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index a16bd7d..e50fcdd 100755 --- a/main.js +++ b/main.js @@ -117,7 +117,7 @@ function getOrgAliases(){ ret.stdout.on('data', (data) => { // console.log("SFDX ouput", JSON.parse(data)); // Update our version of config and enrich the result from SFDX - updateAndEnrichOrgs(JSON.parse(data).results).then(res => { + updateAndEnrichOrgs(JSON.parse(data).result).then(res => { orgs = res; resolve(res); }).catch(e => { diff --git a/package.json b/package.json index a7b4015..d04f5ec 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "clicks-not-passwords", "productName": "Clicks not Passwords", - "version": "0.0.4", + "version": "0.0.5", "description": "Clicks not Passwords - Salesforce Org Launcher", "main": "main.js", "scripts": {