Fix for unset events

This commit is contained in:
Vencislav Atanasov 2023-10-16 21:21:55 +03:00
parent 4b072dc2df
commit b33da1563f
1 changed files with 59 additions and 59 deletions

View File

@ -240,7 +240,7 @@ function parseData($config, $data) {
continue; continue;
} }
if (is_null($event_info['event_id'])) { if (is_null($event_info) || is_null($event_info['event_id'])) {
$columns[] = '<td>&nbsp;</td>'; $columns[] = '<td>&nbsp;</td>';
continue; continue;
} }