diff options
Diffstat (limited to 'rhautoimport-ra')
-rwxr-xr-x | rhautoimport-ra | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rhautoimport-ra b/rhautoimport-ra index 6874e34..9a73250 100755 --- a/rhautoimport-ra +++ b/rhautoimport-ra @@ -36,7 +36,7 @@ use lib '/usr/local/share/rhautoimport/'; use rhautoimport; my $STAT_FILE = $ENV{'HOME'} . "/rhautoimport-ra.stat"; -my $RSS_URL = "https://cba.fro.at/podcast/radioattac/feed"; +my $RSS_URL = "https://cba.media/podcast/radioattac/feed"; $XML::Feed::MULTIPLE_ENCLOSURES=1; my $RD_GROUP = "RadioATTAC"; my $PV_ID = '76'; @@ -111,10 +111,10 @@ for my $entry ($feed->entries) { $i++; next unless $entry->enclosure; - my $entry_bdt = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'broadcastDate'}; + my $entry_bdt = $entry->{'entry'}{'https://cba.media/help#feeds'}{'broadcastDate'}; my $format_string = "%a, %d %b %Y %H:%M:%S"; unless (defined $entry_bdt) { - $entry_bdt = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'productionDate'}; + $entry_bdt = $entry->{'entry'}{'https://cba.media/help#feeds'}{'productionDate'}; $format_string = "%a, %d %b %Y"; } next unless (defined $entry_bdt); |