Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Check if the data is in the lookup server
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Apr 16, 2019
commit 626f781bda71875bfe662880f61a2372431f24d9
2 changes: 1 addition & 1 deletion settings/BackgroundJobs/VerifyUserData.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,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;
}

Expand Down