summaryrefslogtreecommitdiff
path: root/rhimport-fw
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2013-01-03 17:02:57 (GMT)
committerChristian Pointner <equinox@helsinki.at>2013-01-03 17:02:57 (GMT)
commit9f76052a99742b0b6bc449ea8f0f921077cfdbd4 (patch)
tree29284b398bb1bf33ff4aeb044f6bc9290ad0da4f /rhimport-fw
parent4453b157866875f925fe2c26f7c86027b4674fc4 (diff)
decoding HTML entities frm summary
less specific regex for radio attac
Diffstat (limited to 'rhimport-fw')
-rwxr-xr-xrhimport-fw5
1 files changed, 3 insertions, 2 deletions
diff --git a/rhimport-fw b/rhimport-fw
index 009a137..f8c6694 100755
--- a/rhimport-fw
+++ b/rhimport-fw
@@ -31,6 +31,7 @@ use XML::Feed::Enclosure;
use File::Fetch;
use IO::Handle;
use IPC::Open3;
+use HTML::Entities;
use lib '/usr/local/share/rhimport/';
use rhimport;
@@ -98,8 +99,8 @@ for my $entry ($feed->entries) {
if($entry->enclosure && $entry->enclosure->type eq "audio/mpeg") {
next unless $entry->enclosure->url =~ /$regexp/;
- my $sum_title = $entry->title;
- my $sum_text = $entry->content->body;
+ my $sum_title = decode_entities($entry->title);
+ my $sum_text = decode_entities($entry->content->body);
my $ff = File::Fetch->new(uri => $entry->enclosure->url);
my $current_file = `cat $STAT_FILE`;