Merge pull request #23074 from nextcloud/fix/sharee-search-empty-email-match
Do not match sharees on an empty email address
This commit is contained in:
commit
cb08c6cd18
|
@ -147,9 +147,9 @@ class UserPlugin implements ISearchPlugin {
|
||||||
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
strtolower($uid) === $lowerSearch ||
|
$lowerSearch !== '' && (strtolower($uid) === $lowerSearch ||
|
||||||
strtolower($userDisplayName) === $lowerSearch ||
|
strtolower($userDisplayName) === $lowerSearch ||
|
||||||
strtolower($userEmail) === $lowerSearch
|
strtolower($userEmail) === $lowerSearch)
|
||||||
) {
|
) {
|
||||||
if (strtolower($uid) === $lowerSearch) {
|
if (strtolower($uid) === $lowerSearch) {
|
||||||
$foundUserById = true;
|
$foundUserById = true;
|
||||||
|
|
Loading…
Reference in New Issue