appStoreId has empty string default

This commit is contained in:
Girish Ramakrishnan
2016-06-03 23:58:09 -07:00
parent bfe8df35df
commit 7f99fe2399

View File

@@ -353,7 +353,7 @@ function install(appId, data, auditSource, callback) {
assert.strictEqual(typeof auditSource, 'object');
assert.strictEqual(typeof callback, 'function');
var appStoreId = data.appStoreId,
var appStoreId = data.appStoreId || '',
manifest = data.manifest,
location = data.location.toLowerCase(),
portBindings = data.portBindings || null,