Fixed the feed processing to include the title attribute. I'll get this right eventually...

This commit is contained in:
Brian O'Donnell
2015-04-20 11:28:14 -04:00
parent 4a5a919489
commit 79dc3ee2b8
+2
View File
@@ -160,6 +160,7 @@ sub get_feed_items {
foreach my $item ( @{$feed->{'channel'}->{'item'}} ){
my $link = $item->{'link'};
my $title =
my @hashtags = ();
my $guid = '';
@@ -222,6 +223,7 @@ sub get_feed_items {
my $obj = {
guid => $guid,
title => $item->{'title'},
link => $link,
hashtags => hashtagify( \@hashtags ),
};