From d6e588d792de161dc6b7c4b3bf66b586ca417feb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 16 Apr 2019 08:40:17 +0200 Subject: [PATCH] Check if the data is in the lookup server Signed-off-by: Joas Schilling --- settings/BackgroundJobs/VerifyUserData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/BackgroundJobs/VerifyUserData.php b/settings/BackgroundJobs/VerifyUserData.php index 8d54cde9dd90d..353c3d1b59bb2 100644 --- a/settings/BackgroundJobs/VerifyUserData.php +++ b/settings/BackgroundJobs/VerifyUserData.php @@ -198,7 +198,7 @@ protected function verifyViaLookupServer(array $argument, $dataType) { $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; }