summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/html.c b/html.c
index 5118042..13c8e8b 100644
--- a/html.c
+++ b/html.c
@@ -1670,7 +1670,10 @@ int html_get_handler(const xs_dict *req, const char *q_path,
1670 xs *list = timeline_list(&snac, "private", skip, show); 1670 xs *list = timeline_list(&snac, "private", skip, show);
1671 xs *next = timeline_list(&snac, "private", skip + show, 1); 1671 xs *next = timeline_list(&snac, "private", skip + show, 1);
1672 1672
1673 *body = html_timeline(&snac, list, 0, skip, show, xs_list_len(next)); 1673 xs *pins = pinned_list(&snac);
1674 pins = xs_list_cat(pins, list);
1675
1676 *body = html_timeline(&snac, pins, 0, skip, show, xs_list_len(next));
1674 1677
1675 *b_size = strlen(*body); 1678 *b_size = strlen(*body);
1676 status = 200; 1679 status = 200;