diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-04 15:01:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 15:01:04 +0200 |
commit | 9c4d5628084784bf3d14e9ae4f2e750bd537acef (patch) | |
tree | 9d4de81e96b634b2738a0e6e7d2d74fb5827e7e8 /lib/private/User | |
parent | a3a66859d3188458a6a2617ec81caa5a27c93556 (diff) | |
parent | 6795b35cdf0a9346ba7d56fcba23386fb22c8594 (diff) | |
download | nextcloud-server-9c4d5628084784bf3d14e9ae4f2e750bd537acef.tar.gz nextcloud-server-9c4d5628084784bf3d14e9ae4f2e750bd537acef.zip |
Merge pull request #9063 from nextcloud/fix-callForSeenUsers
Move on with the next user if we found the user on one user back-end
Diffstat (limited to 'lib/private/User')
-rw-r--r-- | lib/private/User/Manager.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/User/Manager.php b/lib/private/User/Manager.php index 5f2a010561c..abc7a45e6bc 100644 --- a/lib/private/User/Manager.php +++ b/lib/private/User/Manager.php @@ -478,6 +478,7 @@ class Manager extends PublicEmitter implements IUserManager { if ($return === false) { return; } + break; } } } @@ -488,7 +489,7 @@ class Manager extends PublicEmitter implements IUserManager { * Getting all userIds that have a listLogin value requires checking the * value in php because on oracle you cannot use a clob in a where clause, * preventing us from doing a not null or length(value) > 0 check. - * + * * @param int $limit * @param int $offset * @return string[] with user ids |