@netless/window-manager 1.0.11 → 1.0.12
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AppManager.ts +1 -1
package/package.json
CHANGED
package/src/AppManager.ts
CHANGED
|
@@ -762,7 +762,7 @@ export class AppManager {
|
|
|
762
762
|
public async closeApp(appId: string, needClose = true) {
|
|
763
763
|
const appProxy = this.appProxies.get(appId);
|
|
764
764
|
if (appProxy) {
|
|
765
|
-
appProxy.destroy(true, needClose, false);
|
|
765
|
+
await appProxy.destroy(true, needClose, false);
|
|
766
766
|
}
|
|
767
767
|
}
|
|
768
768
|
|