pretty.html: fetch stylesheet only if the var is declared
otherwise the app will perform an unnecessary 404 request everytime a theme is not declared Signed-off-by: Gunwant Jain <mail@wantguns.dev>
This commit is contained in:
@@ -24,7 +24,7 @@ fn pretty_retrieve(id: PasteId) -> Option<Template> {
|
||||
|
||||
let mut contents = String::new();
|
||||
file.read_to_string(&mut contents).unwrap();
|
||||
let theme = env::var("THEME").unwrap_or(".".to_string());
|
||||
let theme = env::var("THEME").unwrap_or("".to_string());
|
||||
|
||||
let mut map = HashMap::new();
|
||||
map.insert("title", id.to_string());
|
||||
|
||||
Reference in New Issue
Block a user