Fix empty admin profile in server poller

This commit is contained in:
Hypolite Petovan 2018-11-12 21:48:40 -05:00
parent a319f9991c
commit dadcf3239f

View file

@ -173,7 +173,9 @@ class Server
);
//Add the admin to the directory
$this->profilePollQueueModel->add($probe_result['data']['admin']['profile']);
if (!empty($probe_result['data']['admin']['profile'])) {
$this->profilePollQueueModel->add($probe_result['data']['admin']['profile']);
}
}
if ($server) {