mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Merge pull request #15343 from nextcloud/backport/15122/stable14
[stable14] Check if the data is in the lookup server
This commit is contained in:
commit
07c97edd08
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ class VerifyUserData extends Job {
|
|||
$lookupServerData = $this->queryLookupServer($cloudId);
|
||||
|
||||
// for some reasons we couldn't read any data from the lookup server, try again later
|
||||
if (empty($lookupServerData)) {
|
||||
if (empty($lookupServerData) || empty($lookupServerData[$dataType])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue