mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix(sharding): typo in addOrderBy
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
This commit is contained in:
parent
79db082fe6
commit
49bd1754d4
1 changed files with 1 additions and 1 deletions
|
|
@ -277,7 +277,7 @@ class ShardedQueryBuilder extends ExtendedQueryBuilder {
|
|||
|
||||
public function addOrderBy($sort, $order = null) {
|
||||
$this->registerOrder((string)$sort, (string)$order ?? 'ASC');
|
||||
return parent::orderBy($sort, $order);
|
||||
return parent::addOrderBy($sort, $order);
|
||||
}
|
||||
|
||||
public function orderBy($sort, $order = null) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue