aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorgrunfink <grunfink@comam.es>2026-02-24 07:28:17 +0100
committergrunfink <grunfink@comam.es>2026-02-24 07:28:17 +0100
commit61846db75d2010a7ee9bae2e6728efb4bea229ca (patch)
tree66c938b5fa725fd46a4c0cc9777cdb7087ca1dd5 /html.c
parentb5f9aa9cb0c852c31567a3b94de82d02ef77cdf6 (diff)
Fixed local message not being shown.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
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);