#[deeden]It has been a while since I phped, but `array_key_exists(['outline'][0], $podcast)` doesn’t look right to me. Firstly, do you need it is checking with `isset`, and secondly, would it not be either `array_key_exists('outline', $podcast)` or `array_key_exists(0, $podcast['outline'])`?