From e87d1661735eaaff87965b3068c5f684354bd022 Mon Sep 17 00:00:00 2001 From: Jalileh Date: Fri, 20 Dec 2024 20:20:00 +0100 Subject: [PATCH] revised x3 for 0.10.4-beta.0 #1582 ( with reloadIgnoringCache to avoid blank window bug ) --- emain/emain-window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emain/emain-window.ts b/emain/emain-window.ts index 574803bb1..d985fff5c 100644 --- a/emain/emain-window.ts +++ b/emain/emain-window.ts @@ -709,7 +709,7 @@ ipcMain.on("delete-workspace", (event, workspaceId) => { await ww.switchWorkspace(prevNextWorkspace.workspaceid); await WorkspaceService.DeleteWorkspace(workspaceId); - + ww.activeTabView.webContents.reloadIgnoringCache(); // the blank window bug from 0.10.1 OCCASIONALLY occurs if this is not here, ( issue #1567 ) } else { await WorkspaceService.DeleteWorkspace(workspaceId); console.log("delete-workspace done", workspaceId, ww?.waveWindowId);