diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/response.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ [package] name = "september" -version = "0.2.22" +version = "0.2.23" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "A simple and efficient Gemini-to-HTTP proxy." diff --git a/src/response.rs b/src/response.rs index 329d7b2..73a32e9 100644 --- a/src/response.rs +++ b/src/response.rs @@ -146,7 +146,7 @@ For example: to proxy "gemini://fuwn.me/uptime", visit "/proxy/fuwn.me/uptime".< )); } } else if !is_nocss { - html_context.push_str(&format!(r#"<link rel="stylesheet" href="https://latex.now.sh/style.css"><style>{CSS}</style>"#)); + html_context.push_str(&format!(r#"<link rel="stylesheet" href="https://latex.vercel.app/style.css"><style>{CSS}</style>"#)); if let Ok(primary) = var("PRIMARY_COLOUR") { html_context |