mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Merge pull request #23087 from nextcloud/backport/23013/stable19
[stable19] Show federation and email results also with exact user match unless c…
This commit is contained in:
commit
830a4348f9
1 changed files with 3 additions and 2 deletions
|
|
@ -90,9 +90,10 @@ class Search implements ISearch {
|
|||
$searchResult->unsetResult($emailType);
|
||||
}
|
||||
|
||||
// if we have an exact local user match, there is no need to show the remote and email matches
|
||||
// if we have an exact local user match with an email-a-like query,
|
||||
// there is no need to show the remote and email matches.
|
||||
$userType = new SearchResultType('users');
|
||||
if ($searchResult->hasExactIdMatch($userType)) {
|
||||
if (strpos($search, '@') !== false && $searchResult->hasExactIdMatch($userType)) {
|
||||
$searchResult->unsetResult($remoteType);
|
||||
$searchResult->unsetResult($emailType);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue