Ignore whitespace in sharing by mail
Signed-off-by: onehappycat <one.happy.cat@gmx.com>
This commit is contained in:
parent
874a1ef500
commit
288ca45938
|
@ -54,6 +54,9 @@ class Search implements ISearch {
|
|||
public function search($search, array $shareTypes, $lookup, $limit, $offset) {
|
||||
$hasMoreResults = false;
|
||||
|
||||
// Trim leading and trailing whitespace characters, e.g. when query is copy-pasted
|
||||
$search = trim($search);
|
||||
|
||||
/** @var ISearchResult $searchResult */
|
||||
$searchResult = $this->c->resolve(SearchResult::class);
|
||||
|
||||
|
|
Loading…
Reference in New Issue