From 2322de4900312653d04ec19e8ee2850e0f5d4ac4 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 7 May 2024 20:53:58 +0200 Subject: [PATCH] Added a title to the instance timeline. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 86cb2f5..5521a9f 100644 --- a/html.c +++ b/html.c @@ -2653,7 +2653,7 @@ int html_get_handler(const xs_dict *req, const char *q_path, xs *next = timeline_instance_list(skip + show, 1); *body = html_timeline(&snac, list, 0, skip, show, - xs_list_len(next), NULL, "/instance", 0); + xs_list_len(next), L("Showing instance timeline"), "/instance", 0); *b_size = strlen(*body); status = 200; }