aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2025-01-29 09:24:09 +0100
committerdefault <nobody@localhost>2025-01-29 09:24:09 +0100
commit4acb3f65db21b1be6c16cf017aae890bb6dd4eea (patch)
tree681f0d3e6b095d9411bd62aa3f2c57b2e12349c9 /html.c
parentaec643838f304468af61ca2ad4e00a9e7125e53b (diff)
Call timeline_add_mark() after history_add() for better timestamp checks.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 8f8b524..6365afb 100644
--- a/html.c
+++ b/html.c
@@ -3515,8 +3515,6 @@ int html_get_handler(const xs_dict *req, const char *q_path,
xs *list = timeline_list(&snac, "private", skip, show, &more);
- timeline_add_mark(&snac);
-
*body = html_timeline(&snac, list, 0, skip, show,
more, NULL, "/admin", 1, error);
@@ -3525,6 +3523,8 @@ int html_get_handler(const xs_dict *req, const char *q_path,
if (save)
history_add(&snac, "timeline.html_", *body, *b_size, etag);
+
+ timeline_add_mark(&snac);
}
}
}