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
1 changed files with 3 additions and 1 deletions

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) {