Ignore whitespace in sharing by mail

Signed-off-by: onehappycat <one.happy.cat@gmx.com>
This commit is contained in:
onehappycat 2020-07-23 22:20:18 +02:00 committed by backportbot[bot]
parent 874a1ef500
commit 288ca45938
1 changed files with 3 additions and 0 deletions

View File

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