@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.
- package/dist/index.js +4 -1
- 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
|
-
|
|
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);
|