commit 4408859f8dcb8f83670d75f1128e1120ea318ec9
parent 544a20fb2ae81fcdf1103f37d6c57428a8d401c4
Author: green <dandelions@disroot.org>
Date: Mon, 24 Mar 2025 12:47:15 +0100
also display the emoji for likes
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -3362,7 +3362,7 @@ xs_str *html_notifications(snac *user, int skip, int show)
if (strcmp(type, "Undo") == 0 && strcmp(utype, "Follow") == 0)
label = L("Unfollow");
else
- if (strcmp(type, "EmojiReact") == 0) {
+ if (strcmp(type, "EmojiReact") == 0 || strcmp(type, "Like") == 0) {
const char *content = xs_dict_get_path(noti, "msg.content");
if (xs_type(content) == XSTYPE_STRING) {