mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2025-02-08 14:56:44 +01:00
Fix selection for new password-protected stories
This commit is contained in:
parent
4ebe8fe29a
commit
91eaea13b5
1 changed files with 2 additions and 2 deletions
|
@ -128,13 +128,13 @@ class UpdateSelector(Selector):
|
||||||
new = self.filter_empty(new)
|
new = self.filter_empty(new)
|
||||||
deleted = old and not new
|
deleted = old and not new
|
||||||
|
|
||||||
if old and new:
|
if old:
|
||||||
old = self.filter_invalid(old)
|
old = self.filter_invalid(old)
|
||||||
|
|
||||||
if old and new:
|
if old and new:
|
||||||
new = self.filter_unchanged(old, new)
|
new = self.filter_unchanged(old, new)
|
||||||
|
|
||||||
if old and new:
|
if new:
|
||||||
new = self.filter_invalid(new)
|
new = self.filter_invalid(new)
|
||||||
deleted = old and not new
|
deleted = old and not new
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue