Better detection of feeds with content provided.
parent
d2b74819b4
commit
80ba60d295
5
morss.py
5
morss.py
|
@ -251,7 +251,10 @@ def Fill(rss, cache):
|
||||||
|
|
||||||
# content already provided?
|
# content already provided?
|
||||||
if 'content' in item:
|
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
|
return item
|
||||||
|
|
||||||
# check link
|
# check link
|
||||||
|
|
Loading…
Reference in New Issue