Fixed overly agressive link filtering in previous commit

This commit is contained in:
Brian O'Donnell
2015-05-27 10:41:46 -04:00
parent 555f81f5de
commit cb1e2dff79
+1 -1
View File
@@ -208,7 +208,7 @@ sub get_feed_items {
my $link = $item->{'link'};
# no link, no go
next unless defined $link and ref $link eq 'SCALAR';
next unless defined $link and ref $link ne 'HASH' and ref $link ne 'ARRAY';
my @hashtags = ();
my $guid = undef;