mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
Ask for just 1 more entry beyond the current page to test if there are more.
This commit is contained in:
parent
979389fd47
commit
df1b1510b7
1 changed files with 2 additions and 2 deletions
4
html.c
4
html.c
|
@ -1035,7 +1035,7 @@ int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char *
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
xs *list = timeline_list(&snac, "public", skip, show);
|
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));
|
*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"));
|
snac_debug(&snac, 1, xs_fmt("building timeline"));
|
||||||
|
|
||||||
xs *list = timeline_list(&snac, "private", skip, show);
|
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));
|
*body = html_timeline(&snac, list, 0, skip, show, xs_list_len(next));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue