From f54151cae49712877c70d043c72aae94e43131a2 Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Thu, 12 Jul 2018 14:21:25 -0400 Subject: [PATCH] Less restriction on blank titles. --- utils/story_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/story_functions.py b/utils/story_functions.py index de408f7e8..25db5039d 100644 --- a/utils/story_functions.py +++ b/utils/story_functions.py @@ -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'))