Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change: RELOAD_URLで飛ばすページをabout:blankにする #2121

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Change: about:blankにする
  • Loading branch information
sevenc-nanashi committed Jun 15, 2024
commit ea15b84a09473ca27684fcb592ed9891e4b59461
3 changes: 2 additions & 1 deletion src/backend/electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,8 @@ ipcMainHandle("VALIDATE_ENGINE_DIR", (_, { engineDir }) => {
ipcMainHandle("RELOAD_APP", async (_, { isMultiEngineOffMode }) => {
win.hide(); // FIXME: ダミーページ表示のほうが良い

win.reload();
// 一旦適当なURLに飛ばしてページをアンロードする
await win.loadURL("about:blank");

log.info("Checking ENGINE status before reload app");
const engineCleanupResult = cleanupEngines();
Expand Down
Loading