From 2e3dbd5544ce0a1eece028cfe43888fdf88c332b Mon Sep 17 00:00:00 2001 From: m1ga Date: Thu, 5 Sep 2024 10:36:26 +0200 Subject: [PATCH] get correct ID if multiple are used --- Alloy/tiapp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alloy/tiapp.js b/Alloy/tiapp.js index d3f19ad78..867db6c41 100644 --- a/Alloy/tiapp.js +++ b/Alloy/tiapp.js @@ -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) { // normal ID - only if no platform specific was set already bundleId = U.XML.getNodeText(elems.item(i)); }