ee-core 2.8.0 → 2.8.2

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/ee/eeApp.js CHANGED
@@ -220,7 +220,8 @@ class EeApp extends BaseApp {
220
220
  throw new Error(`[ee-core] Please Check the value of cross.${service} enable is true !`);
221
221
  }
222
222
 
223
- const url = Cross.getUrl(service);
223
+ const entityName = crossConfig[service].name;
224
+ const url = Cross.getUrl(entityName);
224
225
 
225
226
  let count = 0;
226
227
  let serviceReady = false;
@@ -27,7 +27,7 @@ const CoreElectronApp = {
27
27
  })
28
28
 
29
29
  app.on('window-all-closed', () => {
30
- if (!UtilsIs.macOS) {
30
+ if (!UtilsIs.macOS()) {
31
31
  Log.coreLogger.info('[ee-core] [lib/eeApp] window-all-closed quit');
32
32
  CoreApp.appQuit();
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ee-core",
3
- "version": "2.8.0",
3
+ "version": "2.8.2",
4
4
  "description": "ee core",
5
5
  "main": "index.js",
6
6
  "scripts": {