diff options
author | default <nobody@localhost> | 2024-05-10 12:49:03 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-05-10 12:49:03 +0200 |
commit | 767c2d98d519c9bde43788336d269adf353e573f (patch) | |
tree | befe107baa40f81eccbd17b46f74aea096dd3440 /html.c | |
parent | c2c0f3b39b8d893b9041907df375fa20654ad3e2 (diff) |
Also add the 'More...' link if there was a search timeout.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |