Better detection of feeds with content provided.

master
pictuga 2013-04-19 11:42:54 +02:00
parent d2b74819b4
commit 80ba60d295
1 changed files with 4 additions and 1 deletions

View File

@ -251,7 +251,10 @@ def Fill(rss, cache):
# content already provided?
if 'content' in item:
if len(item.content) > 4*len(item.desc):
content_len = len(lxml.html.fromstring(item.content).text_content())
log('content: %s vs %s' % (content_len, len(item.desc)))
if content_len > 5*len(item.desc):
log('provided')
return item
# check link