Improve pinned post parsing for templates

This commit is contained in:
Manuel Cortez 2025-03-08 11:06:15 -06:00
parent ea79165362
commit 582d14708f

View File

@ -90,7 +90,7 @@ def render_post(post, template, settings, relative_times=False, offset_hours=0):
image_descriptions = process_image_descriptions(post.media_attachments) image_descriptions = process_image_descriptions(post.media_attachments)
available_data.update(image_descriptions=image_descriptions) available_data.update(image_descriptions=image_descriptions)
# Process if the post is pinned # Process if the post is pinned
if post.pinned: if post.get("pinned", False):
pinned = _("Pinned.") pinned = _("Pinned.")
else: else:
pinned = "" pinned = ""