♻️ Simple & Efficient Gemini-to-HTTP Proxy fuwn.net
proxy gemini-protocol protocol gemini http rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: bump september

Fuwn 113bafa4 8fcc115f

+8 -2
+1 -1
Cargo.toml
··· 2 2 3 3 [package] 4 4 name = "september" 5 - version = "0.2.17" 5 + version = "0.2.19" 6 6 authors = ["Fuwn <contact@fuwn.me>"] 7 7 edition = "2021" 8 8 description = "A simple and efficient Gemini-to-HTTP proxy."
+7 -1
src/html.rs
··· 4 4 Some(format!( 5 5 "gemini://{}{}{}", 6 6 url.domain()?, 7 - { if href.starts_with('/') { "" } else { "/" } }, 7 + { 8 + if href.starts_with('/') { 9 + "" 10 + } else { 11 + "/" 12 + } 13 + }, 8 14 href 9 15 )) 10 16 }