summaryrefslogtreecommitdiff
path: root/graveyard/rhautoimport-ab
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-01-16 19:19:02 (GMT)
committerChristian Pointner <equinox@spreadspace.org>2021-01-16 19:19:02 (GMT)
commit13bc10305856751c1eb14634a1debab317ff263a (patch)
tree6c7d67f8bc666fd4ad65be73bf8603c6f9cd8485 /graveyard/rhautoimport-ab
parentca21303df7d8c5ac3a5826484c800c0128baaaff (diff)
CBA: fix XML feed namespaces
Diffstat (limited to 'graveyard/rhautoimport-ab')
-rwxr-xr-xgraveyard/rhautoimport-ab4
1 files changed, 2 insertions, 2 deletions
diff --git a/graveyard/rhautoimport-ab b/graveyard/rhautoimport-ab
index 3a2e25f..e420301 100755
--- a/graveyard/rhautoimport-ab
+++ b/graveyard/rhautoimport-ab
@@ -128,10 +128,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'}{'http://cba.fro.at/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'}{'http://cba.fro.at/help#feeds'}{'productionDate'};
$format_string = "%a, %d %b %Y";
}
next unless (defined $entry_bdt);