Don't apply "nofollow" to links on single-user instances

This commit is contained in:
Matt Baer 2021-06-27 10:51:53 -04:00
parent 276304d5b8
commit cbc2427475
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ func (p *PublicPost) augmentReadingDestination() {
}
func applyMarkdown(data []byte, baseURL string, cfg *config.Config) string {
return applyMarkdownSpecial(data, baseURL, cfg, false)
return applyMarkdownSpecial(data, baseURL, cfg, cfg.App.SingleUser)
}
func disableYoutubeAutoplay(outHTML string) string {