From 61846db75d2010a7ee9bae2e6728efb4bea229ca Mon Sep 17 00:00:00 2001 From: grunfink Date: Tue, 24 Feb 2026 07:28:17 +0100 Subject: Fixed local message not being shown. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 87f0159..6a86304 100644 --- a/html.c +++ b/html.c @@ -3615,7 +3615,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, continue; const int scope = get_msg_visibility(msg); - if (user != NULL && scope != SCOPE_PUBLIC) { + if (user != NULL && scope != SCOPE_PUBLIC && !is_msg_mine(user, xs_dict_get(msg, "id"))) { /* is this message a non-public reply? */ const char *irt = get_in_reply_to(msg); -- cgit v1.2.3