diff options
author | default <nobody@localhost> | 2023-09-18 22:52:27 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-09-18 22:52:27 +0200 |
commit | f8c62fe2102c28e9a59bf4cf14ad6b893753a8d3 (patch) | |
tree | a1e664f31e7309a7b065a4f78abee9d7e62c4bd9 /html.c | |
parent | 5afa5ab071fc253cd11f8549de4ae8a5584451ad (diff) |
Pinned posts are never purged.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1563,7 +1563,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int local, int skip, int xs *msg = NULL; int status; - if (user) + if (user && !is_pinned_by_md5(user, v)) status = timeline_get_by_md5(user, v, &msg); else status = object_get_by_md5(v, &msg); |