mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 03:32:36 +08:00
chore: add content type
This commit is contained in:
parent
444bcbfb30
commit
2a575284b9
|
@ -74,7 +74,11 @@ pub fn embed_server(app_handle: AppHandle) {
|
||||||
.latest()
|
.latest()
|
||||||
.verge_mixed_port
|
.verge_mixed_port
|
||||||
.unwrap_or(Config::clash().data().get_mixed_port());
|
.unwrap_or(Config::clash().data().get_mixed_port());
|
||||||
content.replace("%mixed-port%", &format!("{}", port))
|
let content = content.replace("%mixed-port%", &format!("{}", port));
|
||||||
|
warp::http::Response::builder()
|
||||||
|
.header("Content-Type", "application/x-ns-proxy-autoconfig")
|
||||||
|
.body(content)
|
||||||
|
.unwrap_or_default()
|
||||||
});
|
});
|
||||||
let scheme = warp::path!("commands" / "scheme")
|
let scheme = warp::path!("commands" / "scheme")
|
||||||
.and(warp::query::<QueryParam>())
|
.and(warp::query::<QueryParam>())
|
||||||
|
|
Loading…
Reference in New Issue
Block a user