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" ] }