Fix mention URL on multi-user instances

Previously, links would go to /user/mention:@me@this.tld instead of
/mention:@me@this.tld
This commit is contained in:
Matt Baer 2019-11-27 17:54:17 -05:00
parent 181af8c5c8
commit ae5bbd273d
1 changed files with 1 additions and 1 deletions

View File

@ -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