From 352128ed0d057f97a8cb8f07e364064061b24e56 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Sat, 19 Aug 2023 06:17:55 +0300 Subject: [PATCH] revert to previous version of tauri for ngaccount --- ngaccount/src/main.rs | 2 +- ngaccount/web/src/routes/Create.svelte | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ngaccount/src/main.rs b/ngaccount/src/main.rs index 1a682a7..13bbcbf 100644 --- a/ngaccount/src/main.rs +++ b/ngaccount/src/main.rs @@ -265,7 +265,7 @@ async fn main() -> anyhow::Result<()> { let static_files = warp::get() .and(warp_embed::embed(&Static)) - .with(warp::reply::with::headers(headers)) + //.with(warp::reply::with::headers(headers)) .boxed(); let mut cors = warp::cors() diff --git a/ngaccount/web/src/routes/Create.svelte b/ngaccount/web/src/routes/Create.svelte index d9c194b..7900fff 100644 --- a/ngaccount/web/src/routes/Create.svelte +++ b/ngaccount/web/src/routes/Create.svelte @@ -58,7 +58,7 @@ error = "Closing due to " + (result.error || "an error"); } let window_api = await import("@tauri-apps/plugin-window"); - let main = window_api.Window.getByLabel("main"); + let main = window_api.WebviewWindow.getByLabel("main"); if (main) { await main.emit("error", result); } else { @@ -79,7 +79,7 @@ // @ts-ignore if (window.__TAURI__) { let window_api = await import("@tauri-apps/plugin-window"); - let main = window_api.Window.getByLabel("main"); + let main = window_api.WebviewWindow.getByLabel("main"); if (main) { await main.emit("accepted", result); } else {