mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
A change added in https://github.com/nextcloud/server/pull/45317 introduced a hard stop (25) that prevents full search results from showing up. If there are more than 25 search results for a query only 25 can be seen. So two main issues: - Only 25 results can be seen in total no matter what. - Breaks web client pagination, which typically adds 5 results per request. Signed-off-by: nfebe <fenn25.fn@gmail.com>
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Core\AppInfo;
|
|
|
|
use NCU\Config\Lexicon\ConfigLexiconEntry;
|
|
use NCU\Config\Lexicon\ConfigLexiconStrictness;
|
|
use NCU\Config\Lexicon\IConfigLexicon;
|
|
use NCU\Config\ValueType;
|
|
|
|
/**
|
|
* Config Lexicon for core.
|
|
*
|
|
* Please Add & Manage your Config Keys in that file and keep the Lexicon up to date!
|
|
*/
|
|
class ConfigLexicon implements IConfigLexicon {
|
|
public const UNIFIED_SEARCH_MIN_SEARCH_LENGTH = 'unified_search_min_search_length';
|
|
public const UNIFIED_SEARCH_MAX_RESULTS_PER_REQUEST = 'unified_search_max_results_per_request';
|
|
|
|
public function getStrictness(): ConfigLexiconStrictness {
|
|
return ConfigLexiconStrictness::IGNORE;
|
|
}
|
|
|
|
public function getAppConfigs(): array {
|
|
return [
|
|
new ConfigLexiconEntry(self::UNIFIED_SEARCH_MIN_SEARCH_LENGTH, ValueType::INT, 1, 'Minimum search length to trigger the request', lazy: false),
|
|
new ConfigLexiconEntry(self::UNIFIED_SEARCH_MAX_RESULTS_PER_REQUEST, ValueType::INT, 25, 'Maximum number of results returned per request', lazy: false),
|
|
];
|
|
}
|
|
|
|
public function getUserConfigs(): array {
|
|
return [
|
|
];
|
|
}
|
|
}
|