Handle fatal error when attachment url is null

This commit is contained in:
Michael 2020-11-04 13:14:33 +00:00
parent d47d45e83f
commit 49fee4096a

View File

@ -189,7 +189,7 @@ class Processor
} }
$item['body'] .= "\n[video]" . $attach['url'] . '[/video]'; $item['body'] .= "\n[video]" . $attach['url'] . '[/video]';
} else { } elseif (!empty($attach['url'])) {
if (!empty($item['attach'])) { if (!empty($item['attach'])) {
$item['attach'] .= ','; $item['attach'] .= ',';
} else { } else {
@ -202,6 +202,8 @@ class Processor
$attach['mediaType'] ?? '', $attach['mediaType'] ?? '',
$attach['name'] ?? '' $attach['name'] ?? ''
); );
} else {
Logger::notice('Unknown attachment', ['attach' => $attach]);
} }
} }
} }