diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
commit | 2fbd4bc628b28c88a45026a1ec4a324ca2bda417 (patch) | |
tree | 83e7097247d1b6eae1e0c401b1f91a7d1b2e0eec /rhautoimport-btl | |
parent | 25acf325139cc0f7ce59406bc083258aa1e8bfee (diff) |
make interface of fetch_parse_rss the same as fetch_parse_json from rhrdlibs
Diffstat (limited to 'rhautoimport-btl')
-rwxr-xr-x | rhautoimport-btl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rhautoimport-btl b/rhautoimport-btl index 300027c..2144053 100755 --- a/rhautoimport-btl +++ b/rhautoimport-btl @@ -91,9 +91,9 @@ my $bdfile = sprintf("%02d%02d%02d-btlv128\.mp3", $broadcast_date[0]%100, $broad print "looking for files like '$bdfile' in RSS Feed\n"; print " -> $RSS_URL\n"; -my ($feed, $errstr) = rhautoimport::fetch_parse_rss($RSS_URL); -unless (defined $feed) { - print "Error fetching feed: $errstr\n"; +my ($result, $feed) = rhautoimport::fetch_parse_rss($RSS_URL); +unless ($result) { + print "Error fetching feed: $feed\n"; exit 1; } |