fix any request being treated as a GUI upload form

This commit is contained in:
blek 2023-12-12 16:30:03 +10:00 committed by blek! Git
parent caaae9b9ae
commit f91625729c
1 changed files with 2 additions and 1 deletions

View File

@ -307,7 +307,8 @@ pub async fn upload(form: FormData, ip: Option<IpAddr>, state: SharedState) -> R
}
pub fn get_routes(state: SharedState) -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
warp::post()
warp::path("upload")
.and(warp::post())
.and(warp::multipart::form())
.and(real_ip(vec![state.env.proxy_addr]))
.and(