From b48487e6a7b33f5a352e542fae21a2efd53ce295 Mon Sep 17 00:00:00 2001 From: "Ngo Iok Ui (Wu Yu Wei)" Date: Mon, 18 Oct 2021 21:36:45 +0800 Subject: [PATCH] Fix empty header from CORS on Linux, closes #2327 (#2762) * Fix empty header from CORS on Linux * Fix commit hash --- .changes/linux-cors.md | 6 ++++++ core/tauri-runtime-wry/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/linux-cors.md diff --git a/.changes/linux-cors.md b/.changes/linux-cors.md new file mode 100644 index 000000000..4dc7ecd29 --- /dev/null +++ b/.changes/linux-cors.md @@ -0,0 +1,6 @@ +--- +"tauri-runtime-wry": patch +--- + +Fix empty header from CORS on Linux. + diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 0d1ea0244..f378d9859 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -13,7 +13,7 @@ readme = "README.md" [dependencies] #wry = { version = "0.12", default-features = false, features = [ "file-drop", "protocol" ] } -wry = { git = "https://github.com/tauri-apps/wry", rev = "e056fb2a15e29de1b8ed85a548cfeb1f85031357", default-features = false, features = [ "file-drop", "protocol" ] } +wry = { git = "https://github.com/tauri-apps/wry", rev = "910cc1eb8ed08c66e9fb75df90e28635538d68ab", default-features = false, features = [ "file-drop", "protocol" ] } tauri-runtime = { version = "0.2.1", path = "../tauri-runtime" } tauri-utils = { version = "1.0.0-beta.3", path = "../tauri-utils" } uuid = { version = "0.8.2", features = [ "v4" ] }