diff options
| author | 2024-05-06 06:40:07 +0200 | |
|---|---|---|
| committer | 2024-05-06 06:40:07 +0200 | |
| commit | f67c4cf7d95739fb5cfa7e6644565ba9fe4c925c (patch) | |
| tree | 77471625d6b0e9af84f1ebc07989c0fa3717e716 | |
| parent | mastoapi: also fix polls from Pleroma. (diff) | |
| download | snac2-f67c4cf7d95739fb5cfa7e6644565ba9fe4c925c.tar.gz snac2-f67c4cf7d95739fb5cfa7e6644565ba9fe4c925c.tar.xz snac2-f67c4cf7d95739fb5cfa7e6644565ba9fe4c925c.zip | |
More logging!
Diffstat (limited to '')
| -rw-r--r-- | mastoapi.c | 4 |
1 files changed, 4 insertions, 0 deletions
| @@ -1467,6 +1467,10 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, | |||
| 1467 | if (limit == 0) | 1467 | if (limit == 0) |
| 1468 | limit = 20; | 1468 | limit = 20; |
| 1469 | 1469 | ||
| 1470 | snac_debug(&snac1, 1, | ||
| 1471 | xs_fmt("/v1/timelines/home: max_id=%s since_id=%s min_id=%s limit=%s", | ||
| 1472 | max_id, since_id, min_id, limit_s)); | ||
| 1473 | |||
| 1470 | xs *timeline = timeline_simple_list(&snac1, "private", 0, 2048); | 1474 | xs *timeline = timeline_simple_list(&snac1, "private", 0, 2048); |
| 1471 | 1475 | ||
| 1472 | xs *out = xs_list_new(); | 1476 | xs *out = xs_list_new(); |