From ae6aafeb881c075a49eddd834bcfc21e9fc63b18 Mon Sep 17 00:00:00 2001 From: default Date: Wed, 21 Feb 2024 08:38:46 +0100 Subject: [PATCH] In html_timeline(), always pick the msg from the global object storage. This allows the logged instance timeline to work. Does this have more implications? Not sure. --- html.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html.c b/html.c index 3286b04..82a2635 100644 --- a/html.c +++ b/html.c @@ -1938,9 +1938,11 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, xs *msg = NULL; int status; +#if 0 if (user && !is_pinned_by_md5(user, v)) status = timeline_get_by_md5(user, v, &msg); else +#endif status = object_get_by_md5(v, &msg); if (!valid_status(status))