Ask for just 1 more entry beyond the current page to test if there are more.

This commit is contained in:
default 2022-12-07 10:42:24 +01:00
parent 979389fd47
commit df1b1510b7

4
html.c
View File

@ -1035,7 +1035,7 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
}
else {
xs *list = timeline_list(&snac, "public", skip, show);
xs *next = timeline_list(&snac, "public", skip + show, show);
xs *next = timeline_list(&snac, "public", skip + show, 1);
*body = html_timeline(&snac, list, 1, skip, show, xs_list_len(next));
@ -1064,7 +1064,7 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
snac_debug(&snac, 1, xs_fmt("building timeline"));
xs *list = timeline_list(&snac, "private", skip, show);
xs *next = timeline_list(&snac, "private", skip + show, show);
xs *next = timeline_list(&snac, "private", skip + show, 1);
*body = html_timeline(&snac, list, 0, skip, show, xs_list_len(next));