check that subreddit_about exists (sometimes it might be null and referencing to the public_description_html will throw an error

This commit is contained in:
teddit 2022-06-10 19:30:24 +02:00
parent 1c9b125b70
commit 9e4ea80c7e
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ html
head
title /r/#{subreddit}
meta(property='og:title', content='/r/' + subreddit)
meta(property='og:description', content='' + unescape(subreddit_about.public_description_html, user_preferences))
if subreddit_about
meta(property='og:description', content='' + unescape(subreddit_about.public_description_html, user_preferences))
include includes/meta_default.pug
include includes/head.pug
body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "")