mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Saved stories have no changes.
This commit is contained in:
parent
1c95d2b83c
commit
61397dab49
1 changed files with 3 additions and 1 deletions
|
@ -1456,7 +1456,9 @@ class Feed(models.Model):
|
|||
story_content = ''
|
||||
latest_story_content = None
|
||||
has_changes = False
|
||||
if not show_changes and story_db.story_latest_content_z:
|
||||
if (not show_changes and
|
||||
hasattr(story_db, 'story_latest_content_z') and
|
||||
story_db.story_latest_content_z):
|
||||
latest_story_content = smart_unicode(zlib.decompress(story_db.story_latest_content_z))
|
||||
if story_db.story_content_z:
|
||||
story_content = smart_unicode(zlib.decompress(story_db.story_content_z))
|
||||
|
|
Loading…
Add table
Reference in a new issue