mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
fix(unifiedsearch): Allow searching for "0"
empty("0") evaluates to true
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
99e287b49a
commit
dbd666e82b
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ class UnifiedSearchController extends OCSController {
|
|||
?int $limit = null,
|
||||
$cursor = null,
|
||||
string $from = ''): DataResponse {
|
||||
if (empty(trim($term))) {
|
||||
if (trim($term) === "") {
|
||||
return new DataResponse(null, Http::STATUS_BAD_REQUEST);
|
||||
}
|
||||
[$route, $routeParameters] = $this->getRouteInformation($from);
|
||||
|
|
|
|||
Loading…
Reference in a new issue