Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/podgrab/commit/3baa42a4e446d6483ea58143a16a249795cf5204 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix breaking sanitization

pull/46/head
Akhil Gupta 4 years ago
parent 613c1e74b9
commit 3baa42a4e4

@ -350,7 +350,7 @@ func cleanAttributes(a []parser.Attribute, allowed []string) []parser.Attribute
// A list of characters we consider separators in normal strings and replace with our canonical separator - rather than removing.
var (
separators = regexp.MustCompile(`[!&_=+?:]`)
separators = regexp.MustCompile(`[!&_="+?:]`)
dashes = regexp.MustCompile(`[\-]+`)
)

Loading…
Cancel
Save