summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar grunfink2026-02-24 07:28:17 +0100
committerGravatar grunfink2026-02-24 07:28:17 +0100
commit61846db75d2010a7ee9bae2e6728efb4bea229ca (patch)
tree66c938b5fa725fd46a4c0cc9777cdb7087ca1dd5
parentIncrease the level argument in quoted posts. (diff)
downloadsnac2-61846db75d2010a7ee9bae2e6728efb4bea229ca.tar.gz
snac2-61846db75d2010a7ee9bae2e6728efb4bea229ca.tar.xz
snac2-61846db75d2010a7ee9bae2e6728efb4bea229ca.zip
Fixed local message not being shown.
-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,
3615 continue; 3615 continue;
3616 3616
3617 const int scope = get_msg_visibility(msg); 3617 const int scope = get_msg_visibility(msg);
3618 if (user != NULL && scope != SCOPE_PUBLIC) { 3618 if (user != NULL && scope != SCOPE_PUBLIC && !is_msg_mine(user, xs_dict_get(msg, "id"))) {
3619 /* is this message a non-public reply? */ 3619 /* is this message a non-public reply? */
3620 const char *irt = get_in_reply_to(msg); 3620 const char *irt = get_in_reply_to(msg);
3621 3621