summaryrefslogtreecommitdiff
path: root/test
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 /test
parentca21303df7d8c5ac3a5826484c800c0128baaaff (diff)
CBA: fix XML feed namespaces
Diffstat (limited to 'test')
-rwxr-xr-xtest/cba-inspect6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cba-inspect b/test/cba-inspect
index 48d0f35..c7f3d76 100755
--- a/test/cba-inspect
+++ b/test/cba-inspect
@@ -67,11 +67,11 @@ for my $entry ($feed->entries) {
$sum_title = decode_entities($entry->title);
$sum_text = decode_entities($entry->content->body);
- my $production_date = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'productionDate'};
+ my $production_date = $entry->{'entry'}{'http://cba.fro.at/help#feeds'}{'productionDate'};
$production_date = '<unset>' unless (defined $production_date);
- my $broadcast_date = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'broadcastDate'};
+ my $broadcast_date = $entry->{'entry'}{'http://cba.fro.at/help#feeds'}{'broadcastDate'};
$broadcast_date = '<unset>' unless (defined $broadcast_date);
- my $contains_copyright = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'containsCopyright'};
+ my $contains_copyright = $entry->{'entry'}{'http://cba.fro.at/help#feeds'}{'containsCopyright'};
$contains_copyright = 'false' unless (defined $contains_copyright);
print $sum_title . ":\n";