repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

commit
03047ec
parent
3a25a5f
author
Eric Bower
date
2022-12-25 01:50:12 +0000 UTC
fix(prose): rss link was incorrect
1 files changed,  +0, -3
M prose/api.go
+0, -3
 1@@ -662,9 +662,6 @@ func rssBlogHandler(w http.ResponseWriter, r *http.Request) {
 2 		}
 3 
 4 		realUrl := cfg.FullPostURL(curl, post.Username, post.Slug)
 5-		if !curl.Subdomain && !curl.UsernameInRoute {
 6-			realUrl = fmt.Sprintf("%s://%s%s", cfg.Protocol, r.Host, realUrl)
 7-		}
 8 
 9 		item := &feeds.Item{
10 			Id:          realUrl,