Rewrite URL Dispatch

This commit is contained in:
spikecodes 2020-12-14 16:35:04 -08:00
parent 148d87fb45
commit 75bc170eba
7 changed files with 28 additions and 32 deletions

View file

@ -81,7 +81,7 @@ pub struct ErrorTemplate {
pub async fn format_url(url: &str) -> String {
#[cfg(feature = "proxy")]
return "/imageproxy/".to_string() + encode(url).as_str();
return "/proxy/".to_string() + encode(url).as_str();
#[cfg(not(feature = "proxy"))]
return url.to_string();