diff options
author | Mario <mario@mariovavti.com> | 2023-04-23 09:23:39 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-04-23 09:23:39 +0000 |
commit | eec4845cd0dd179020a61e9d3ba4d5b10fe458a2 (patch) | |
tree | f5069ad28f3f085c4eb2b1788bfc654601c24bda /Zotlabs/Lib/Activity.php | |
parent | b99a4ade1afffb48c8f9f797317a45337533887a (diff) | |
download | volse-hubzilla-eec4845cd0dd179020a61e9d3ba4d5b10fe458a2.tar.gz volse-hubzilla-eec4845cd0dd179020a61e9d3ba4d5b10fe458a2.tar.bz2 volse-hubzilla-eec4845cd0dd179020a61e9d3ba4d5b10fe458a2.zip |
add the conversation endpoint and implement paginated fetch for zot requests in mod item
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 9bbebbf79..cbefd6fd7 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -289,7 +289,7 @@ class Activity { static function encode_item_collection($items, $id, $type, $total = 0) { - if ($total > 30) { + if ($total > App::$pager['itemspage']) { $ret = [ 'id' => z_root() . '/' . $id, 'type' => $type . 'Page', |