From 0e5b56ab4b173506f4b9f866f70274589888beec Mon Sep 17 00:00:00 2001 From: Zankaria Date: Sat, 17 Aug 2024 19:07:31 +0200 Subject: [PATCH] poster_id.html: remove extra space at start --- templates/post/poster_id.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/post/poster_id.html b/templates/post/poster_id.html index 51f0624f..e98187fa 100644 --- a/templates/post/poster_id.html +++ b/templates/post/poster_id.html @@ -1,7 +1,7 @@ {% if config.poster_ids %} {% if post.thread %} - {{ post.ip|poster_id(post.thread) }} + {{ post.ip|poster_id(post.thread) }} {% else %} - {{ post.ip|poster_id(post.id) }} + {{ post.ip|poster_id(post.id) }} {% endif %} {% endif %}