ignore banner url startwith hash in link preload

This commit is contained in:
jackyzy823 2022-02-08 07:29:15 +01:00
parent 6695784050
commit 67c937a3a2
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ proc renderHead*(prefs: Prefs; cfg: Config; req: Request; titleText=""; desc="";
meta(property="og:site_name", content="Nitter")
meta(property="og:locale", content="en_US")
if banner.len > 0:
if banner.len > 0 and not banner.startsWith('#'):
let bannerUrl = getPicUrl(banner)
link(rel="preload", type="image/png", href=bannerUrl, `as`="image")