Merge pull request #10363 from annando/notice
Fix "Undefined index: post-type in .../src/Model/Item.php on line 2888"
This commit is contained in:
commit
ab7f26aca0
1 changed files with 1 additions and 1 deletions
|
@ -2885,7 +2885,7 @@ class Item
|
||||||
'mime' => $attachment['mimetype'],
|
'mime' => $attachment['mimetype'],
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
if ($item['post-type'] == Item::PT_AUDIO) {
|
if (($item['post-type'] ?? null) == Item::PT_AUDIO) {
|
||||||
$leading .= $media;
|
$leading .= $media;
|
||||||
} else {
|
} else {
|
||||||
$trailing .= $media;
|
$trailing .= $media;
|
||||||
|
|
Loading…
Reference in a new issue