Skip to content

Commit

Permalink
get correct ID if multiple are used
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Sep 5, 2024
1 parent e268ce4 commit 2e3dbd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alloy/tiapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ tiapp.getBundleId = function() {
// platform specific ID
isForced = true;
bundleId = U.XML.getNodeText(elems.item(i));
} else if (elems.item(i).getAttribute("platform") === "" && !isForced) {
} else if (elems.item(i).getAttribute("platform") === '' && !isForced) {

Check failure on line 53 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Strings must use singlequote

Check failure on line 53 in Alloy/tiapp.js

View workflow job for this annotation

GitHub Actions / Lint

Strings must use singlequote
// normal ID - only if no platform specific was set already
bundleId = U.XML.getNodeText(elems.item(i));
}
Expand Down

0 comments on commit 2e3dbd5

Please sign in to comment.