1
0
Fork 0
forked from blallo/rss-bridge

RadioRaiBridge: FIX missing <link/>

This commit is contained in:
baz 2019-12-10 16:27:20 +01:00
parent 6c92bfc2d3
commit 6533d42be9

View file

@ -42,7 +42,7 @@ class RadioRaiBridge extends BridgeAbstract {
$item['title'] = $title; $item['title'] = $title;
$item['content'] = $episode->plaintext; $item['content'] = $episode->plaintext;
$item['enclosures'] = [ $this::getFinalURL($audiourl) ]; $item['enclosures'] = [ $this::getFinalURL($audiourl) ];
$item['url'] = $this::URI . $episode->getAttribute('data-href'); $item['uri'] = $this::URI . $episode->getAttribute('data-href');
$this->items[] = $item; $this->items[] = $item;
} }