Skip to content
Snippets Groups Projects
Commit 2c565d68 authored by Robin Appelman's avatar Robin Appelman Committed by backportbot[bot]
Browse files

pass order from unified search to file search


Signed-off-by: default avatarRobin Appelman <robin@icewind.nl>
parent d4381c0e
No related branches found
No related tags found
No related merge requests found
......@@ -30,12 +30,14 @@ declare(strict_types=1);
namespace OCA\Files\Search;
use OC\Files\Search\SearchComparison;
use OC\Files\Search\SearchOrder;
use OC\Files\Search\SearchQuery;
use OCP\Files\FileInfo;
use OCP\Files\IMimeTypeDetector;
use OCP\Files\IRootFolder;
use OCP\Files\Search\ISearchComparison;
use OCP\Files\Node;
use OCP\Files\Search\ISearchOrder;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\IUser;
......@@ -104,7 +106,9 @@ class FilesSearchProvider implements IProvider {
new SearchComparison(ISearchComparison::COMPARE_LIKE, 'name', '%' . $query->getTerm() . '%'),
$query->getLimit(),
(int)$query->getCursor(),
[],
$query->getSortOrder() === ISearchQuery::SORT_DATE_DESC ? [
new SearchOrder(ISearchOrder::DIRECTION_DESCENDING, 'mtime'),
] : [],
$user
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment