diff options
author | default <nobody@localhost> | 2024-02-21 08:38:46 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-02-21 08:38:46 +0100 |
commit | ae6aafeb881c075a49eddd834bcfc21e9fc63b18 (patch) | |
tree | 68ceea2b383ebeed99f396dd3249002168c09710 /html.c | |
parent | 49b226a8e9aa23f92b6a4277cc2e0c2f9b857558 (diff) |
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.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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)) |