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:
parent
5277c60b81
commit
7cfe364b8c
2 changed files with 3 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue