Merge pull request #21991 from nextcloud/backport/21977/stable19
[stable19] Ignore whitespace in sharing by mail
This commit is contained in:
commit
fa9bc471b5
|
@ -54,6 +54,9 @@ class Search implements ISearch {
|
||||||
public function search($search, array $shareTypes, $lookup, $limit, $offset) {
|
public function search($search, array $shareTypes, $lookup, $limit, $offset) {
|
||||||
$hasMoreResults = false;
|
$hasMoreResults = false;
|
||||||
|
|
||||||
|
// Trim leading and trailing whitespace characters, e.g. when query is copy-pasted
|
||||||
|
$search = trim($search);
|
||||||
|
|
||||||
/** @var ISearchResult $searchResult */
|
/** @var ISearchResult $searchResult */
|
||||||
$searchResult = $this->c->resolve(SearchResult::class);
|
$searchResult = $this->c->resolve(SearchResult::class);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue