From 2252949bca8bedb16ec026d7c9f44409ec63215d Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 18 May 2021 07:18:31 +0000 Subject: [PATCH] Style stuff ... --- src/Module/Api/Mastodon/Search.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Module/Api/Mastodon/Search.php b/src/Module/Api/Mastodon/Search.php index 3eec69efca..d8bd26137e 100644 --- a/src/Module/Api/Mastodon/Search.php +++ b/src/Module/Api/Mastodon/Search.php @@ -46,8 +46,9 @@ class Search extends BaseApi self::login(self::SCOPE_READ); $uid = self::getCurrentUserID(); - $request = self::getRequest(['account_id' => 0, 'max_id' => 0, 'min_id' => 0, 'type' => '', - 'exclude_unreviewed' => false, 'q' => '', 'resolve' => false, 'limit' => 20, 'offset' => 0, 'following' => false]); + $request = self::getRequest( + ['max_id' => 0, 'min_id' => 0, 'account_id' => 0, 'type' => '', 'exclude_unreviewed' => false, + 'resolve' => false, 'q' => '', 'limit' => 20, 'offset' => 0, 'following' => false]); // If provided, statuses returned will be authored only by this account $account_id = $request['account_id'];