From 7d1c43cf651c161e922bff0943961e458a562655 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 8 May 2021 12:28:04 +0000 Subject: [PATCH] Formatting --- src/Module/Api/Mastodon/Accounts/Followers.php | 1 + src/Module/Api/Mastodon/Accounts/Following.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Module/Api/Mastodon/Accounts/Followers.php b/src/Module/Api/Mastodon/Accounts/Followers.php index 69e4e95eb1..739341a2fa 100644 --- a/src/Module/Api/Mastodon/Accounts/Followers.php +++ b/src/Module/Api/Mastodon/Accounts/Followers.php @@ -71,6 +71,7 @@ class Followers extends BaseApi if (!empty($min_id)) { $condition = DBA::mergeConditions($condition, ["`cid` > ?", $min_id]); + $params['order'] = ['cid']; } diff --git a/src/Module/Api/Mastodon/Accounts/Following.php b/src/Module/Api/Mastodon/Accounts/Following.php index c36c990c95..10d73e9071 100644 --- a/src/Module/Api/Mastodon/Accounts/Following.php +++ b/src/Module/Api/Mastodon/Accounts/Following.php @@ -71,6 +71,7 @@ class Following extends BaseApi if (!empty($min_id)) { $condition = DBA::mergeConditions($condition, ["`relation-cid` > ?", $min_id]); + $params['order'] = ['cid']; }