@extscreen/es-core 2.3.25 → 2.3.26

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1764,7 +1764,10 @@ class ESLocationManager {
1764
1764
 
1765
1765
  getLocation() {
1766
1766
  return new Promise((resolve, reject) => {
1767
- ESSharedDataManager$1.getString('location', '')
1767
+ const params = {
1768
+ packageName: 'es.extscreen.runtime.setting'
1769
+ };
1770
+ ESSharedDataManager$1.getSharedString(params, 'location', '')
1768
1771
  .then((str) => {
1769
1772
  try {
1770
1773
  const location = JSON.parse(str);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extscreen/es-core",
3
- "version": "2.3.25",
3
+ "version": "2.3.26",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {