1
0
şunun yansıması https://github.com/nextcloud/server.git eşitlendi 2024-08-13 14:11:10 +02:00

fix(unifiedsearch): Allow searching for "0"

empty("0") evaluates to true

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Bu işleme şunda yer alıyor:
Christoph Wurst 2023-09-28 10:53:07 +02:00
ebeveyn 99e287b49a
işleme dbd666e82b
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: CC42AC2A7F0E56D8

Dosyayı Görüntüle

@ -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);