Commit 689831c2 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(podcast:soundbite): rename start time attribute to follow spec

parent 6e4045bb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,7 @@ if (! function_exists('get_rss_feed')) {
            foreach ($episode->soundbites as $soundbite) {
                // TODO: differentiate video from soundbites?
                $soundbiteElement = $item->addChild('soundbite', $soundbite->title, $podcastNamespace);
                $soundbiteElement->addAttribute('start_time', (string) $soundbite->start_time);
                $soundbiteElement->addAttribute('startTime', (string) $soundbite->start_time);
                $soundbiteElement->addAttribute('duration', (string) round($soundbite->duration, 3));
            }