Split titles on whitespace, instead of non-alphanumeric

This commit is contained in:
Brian O'Donnell
2015-04-21 09:02:56 -04:00
parent 2a0be250d1
commit 34de5d0be2
+1 -1
View File
@@ -218,7 +218,7 @@ sub get_feed_items {
# try to guess tags from the title
if( $extract_tags_from_title ){
# split up string
my @parts = split( /[^A-Za-z0-9]/, $item->{'title'} );
my @parts = split( /\s+/, $item->{'title'} );
push( @hashtags, @parts );
}