mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Less restriction on blank titles.
This commit is contained in:
parent
ab939f72fe
commit
f54151cae4
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ def pre_process_story(entry, encoding):
|
|||
|
||||
entry['guid'] = entry.get('guid') or entry.get('id') or entry.get('link') or str(entry.get('published'))
|
||||
|
||||
if not entry.get('title') and entry.get('story_content'):
|
||||
if not entry.get('title'):
|
||||
entry['title'] = ""
|
||||
|
||||
entry['title'] = strip_tags(entry.get('title'))
|
||||
|
|
Loading…
Add table
Reference in a new issue