diff options
| author | green <dandelions@disroot.org> | 2025-03-24 12:47:15 +0100 |
|---|---|---|
| committer | green <dandelions@disroot.org> | 2025-04-13 14:41:07 +0200 |
| commit | 4408859f8dcb8f83670d75f1128e1120ea318ec9 (patch) | |
| tree | 4ab29ea94660b860ec1864691de3cdc4087e4ba4 | |
| parent | 544a20fb2ae81fcdf1103f37d6c57428a8d401c4 (diff) | |
also display the emoji for likes
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |