fix: point to /dist/link instead of /link
This commit is contained in:
parent
107c38d533
commit
2f52fe4ced
1 changed files with 4 additions and 1 deletions
|
@ -162,7 +162,10 @@ async fn upload_to_zip(
|
||||||
|
|
||||||
writer.close().await.unwrap();
|
writer.close().await.unwrap();
|
||||||
|
|
||||||
Ok(Redirect::to(&format!("/link.html?link={}", cache_name)))
|
Ok(Redirect::to(&format!(
|
||||||
|
"/dist/link.html?link={}",
|
||||||
|
cache_name
|
||||||
|
)))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn download(
|
async fn download(
|
||||||
|
|
Loading…
Reference in a new issue