Also add the 'More...' link if there was a search timeout.

This commit is contained in:
default 2024-05-10 12:49:03 +02:00
parent c2c0f3b39b
commit 767c2d98d5

2
html.c
View file

@ -2578,7 +2578,7 @@ int html_get_handler(const xs_dict *req, const char *q_path,
else else
title = xs_fmt(L("Nothing found for '%s'"), q); 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); *b_size = strlen(*body);
status = 200; status = 200;
} }