Merge pull request #15341 from nextcloud/backport/15122/stable16

[stable16] Check if the data is in the lookup server
This commit is contained in:
Roeland Jago Douma 2019-05-02 13:22:02 +02:00 committed by GitHub
commit e63d456588
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,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;
}