Fix selection for new password-protected stories

This commit is contained in:
Joakim Soderlund 2017-02-17 22:32:39 +01:00
parent 4ebe8fe29a
commit 91eaea13b5

View file

@ -128,13 +128,13 @@ class UpdateSelector(Selector):
new = self.filter_empty(new)
deleted = old and not new
if old and new:
if old:
old = self.filter_invalid(old)
if old and new:
new = self.filter_unchanged(old, new)
if old and new:
if new:
new = self.filter_invalid(new)
deleted = old and not new