diff options
Diffstat (limited to 'rhautoimport-mc')
-rwxr-xr-x | rhautoimport-mc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rhautoimport-mc b/rhautoimport-mc index b55a147..d3a3d43 100755 --- a/rhautoimport-mc +++ b/rhautoimport-mc @@ -38,7 +38,7 @@ use lib './'; use rhautoimport; my $STAT_FILE = $ENV{'HOME'} . "/rhautoimport-mc.stat"; -my $RSS_URL = "https://cba.fro.at/podcast/music-circus/feed"; +my $RSS_URL = "https://cba.media/podcast/music-circus/feed"; $XML::Feed::MULTIPLE_ENCLOSURES=1; my $RD_GROUP = "mucirchh"; my $PV_ID = '929'; @@ -120,10 +120,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); |