Skip to content

Commit 5ba551c

Browse files
committed
only set localidentifier when local = true
1 parent e2fb2ea commit 5ba551c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/helpers/capabilityHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const caps = (bsConfig, zip) => {
3535

3636
// Local Identifier
3737
obj.localIdentifier = null;
38-
if (bsConfig.connection_settings.localIdentifier && bsConfig.local === true)
38+
if (obj.local === true && bsConfig.connection_settings.localIdentifier)
3939
{
4040
obj.localIdentifier = bsConfig.connection_settings.localIdentifier;
4141
logger.log(`Local Identifier is set to: ${obj.localIdentifier}`);

0 commit comments

Comments
 (0)