be even more liberal to feeds

git-svn-id: svn://svn.berlios.de/gpodder/branches/gpodder-thp-200708@392 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-08-26 21:56:06 +00:00
parent b2f942691b
commit 0999a045e6
1 changed files with 2 additions and 2 deletions

View File

@ -493,8 +493,8 @@ class podcastItem(object):
episode.title = entry.get( 'title', util.get_first_line( util.remove_html_tags( entry.get( 'summary', ''))))
episode.link = entry.get( 'link', '')
episode.description = util.remove_html_tags( entry.get( 'summary', entry.get( 'link', entry.get( 'title', ''))))
episode.guid = entry.id
episode.pubDate = entry.updated
episode.guid = entry.get( 'id', '')
episode.pubDate = entry.get( 'updated', '')
if episode.title == '':
log( 'Warning: Episode has no title, adding anyways.. (Feed Is Buggy!)', sender = episode)