@aigens/aigens-sdk-core 0.0.16 → 0.0.17

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.
@@ -51,6 +51,10 @@ import Capacitor
51
51
  return
52
52
  }
53
53
 
54
+ if universalLink.isEmpty || !url.absoluteString.starts(with: universalLink) {
55
+ return;
56
+ }
57
+
54
58
  let rUrl = URLRequest(url: url)
55
59
  webView?.load(rUrl)
56
60
  }
@@ -65,6 +69,10 @@ import Capacitor
65
69
  return
66
70
  }
67
71
 
72
+ if universalLink.isEmpty || !url.absoluteString.starts(with: universalLink) {
73
+ return;
74
+ }
75
+
68
76
 
69
77
  let rUrl = URLRequest(url: url)
70
78
  webView?.load(rUrl)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigens/aigens-sdk-core",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "Aigens Order.Place Core Plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",