Fix mention URL on multi-user instances

Previously, links would go to /user/mention:@me@this.tld instead of
/mention:@me@this.tld
pull/195/head
Matt Baer 5 years ago
parent 181af8c5c8
commit ae5bbd273d
  1. 2
      postrender.go

@ -83,7 +83,7 @@ func applyMarkdownSpecial(data []byte, skipNoFollow bool, baseURL string, cfg *c
tagPrefix = "/read/t/"
}
md = []byte(hashtagReg.ReplaceAll(md, []byte("<a href=\""+tagPrefix+"$1\" class=\"hashtag\"><span>#</span><span class=\"p-category\">$1</span></a>")))
handlePrefix := baseURL + "mention:"
handlePrefix := "/mention:"
md = []byte(mentionReg.ReplaceAll(md, []byte("<a href=\""+handlePrefix+"$0\" class=\"mention\">$0</a>")))
}
// Strip out bad HTML

Loading…
Cancel
Save