diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-02-03 17:07:15 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-02-03 17:07:15 (GMT) |
commit | f4bfb97e635e282b7a1c95383089a4205915b17d (patch) | |
tree | 5b62c1686a3e2873f7c42d87250ea2f15b5becc7 /test | |
parent | 7702f414652a2ef64fdb0a261e3c256261b26f88 (diff) |
CBA has switched back to old XML Namespace Identifier
Diffstat (limited to 'test')
-rwxr-xr-x | test/cba-inspect | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cba-inspect b/test/cba-inspect index c7f3d76..48d0f35 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'}{'http://cba.fro.at/help#feeds'}{'productionDate'}; + my $production_date = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'productionDate'}; $production_date = '<unset>' unless (defined $production_date); - my $broadcast_date = $entry->{'entry'}{'http://cba.fro.at/help#feeds'}{'broadcastDate'}; + my $broadcast_date = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'broadcastDate'}; $broadcast_date = '<unset>' unless (defined $broadcast_date); - my $contains_copyright = $entry->{'entry'}{'http://cba.fro.at/help#feeds'}{'containsCopyright'}; + my $contains_copyright = $entry->{'entry'}{'https://cba.fro.at/help#feeds'}{'containsCopyright'}; $contains_copyright = 'false' unless (defined $contains_copyright); print $sum_title . ":\n"; |