From 767c2d98d519c9bde43788336d269adf353e573f Mon Sep 17 00:00:00 2001 From: default Date: Fri, 10 May 2024 12:49:03 +0200 Subject: [PATCH] Also add the 'More...' link if there was a search timeout. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 8139d68..3d378d1 100644 --- a/html.c +++ b/html.c @@ -2578,7 +2578,7 @@ int html_get_handler(const xs_dict *req, const char *q_path, else title = xs_fmt(L("Nothing found for '%s'"), q); - *body = html_timeline(&snac, tl, 0, skip, tl_len, tl_len == show, title, page, 1); + *body = html_timeline(&snac, tl, 0, skip, tl_len, to || tl_len == show, title, page, 1); *b_size = strlen(*body); status = 200; }