senangwebs-tour 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/swt.js CHANGED
@@ -56571,7 +56571,8 @@ void main() {
56571
56571
  * @returns {Object|undefined} - Scene data or undefined if not found
56572
56572
  */
56573
56573
  getSceneById(sceneId) {
56574
- return this.scenesArray.find((scene) => scene.id === sceneId);
56574
+ const targetId = String(sceneId);
56575
+ return this.scenesArray.find((scene) => String(scene.id) === targetId);
56575
56576
  }
56576
56577
 
56577
56578
  /**