Fix: array_reverse returns the reversed content as return value

This commit is contained in:
Michael 2021-12-05 06:22:04 +00:00
parent a2f1bf6a83
commit d57cb05a24
23 changed files with 23 additions and 23 deletions

View file

@ -91,7 +91,7 @@ class Conversations extends BaseApi
DBA::close($convs);
if (!empty($request['min_id'])) {
array_reverse($conversations);
$conversations = array_reverse($conversations);
}
self::setLinkHeader();