From a9f41d6be720818bededa9871cfba3ae35789eef Mon Sep 17 00:00:00 2001 From: Cocoa Date: Sat, 19 Nov 2022 13:31:13 -0500 Subject: [PATCH] Put 'with_icon' param in the correct macro call Fix for https://todo.sr.ht/~tsileo/microblog.pub/66 --- app/templates/notifications.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/notifications.html b/app/templates/notifications.html index 6d1cc3d..d91b392 100644 --- a/app/templates/notifications.html +++ b/app/templates/notifications.html @@ -66,8 +66,8 @@ {{ notif_actor_action(notif, "shared a post", with_icon=True) }} {{ utils.display_object(notif.outbox_object) }} {% elif notif.notification_type.value == "undo_announce" %} - {{ notif_actor_action(notif, "unshared a post") }} - {{ utils.display_object(notif.outbox_object, with_icon=True) }} + {{ notif_actor_action(notif, "unshared a post", with_icon=True) }} + {{ utils.display_object(notif.outbox_object) }} {% elif notif.notification_type.value == "mention" %} {{ notif_actor_action(notif, "mentioned you") }} {{ utils.display_object(notif.inbox_object) }}