aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-04-23 09:23:39 +0000
committerMario <mario@mariovavti.com>2023-04-23 09:23:39 +0000
commiteec4845cd0dd179020a61e9d3ba4d5b10fe458a2 (patch)
treef5069ad28f3f085c4eb2b1788bfc654601c24bda /Zotlabs/Lib
parentb99a4ade1afffb48c8f9f797317a45337533887a (diff)
downloadvolse-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')
-rw-r--r--Zotlabs/Lib/Activity.php2
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',