Don't get page with 0 comment
This commit is contained in:
parent
97a70e2f5c
commit
56a5eca576
2 changed files with 6 additions and 3 deletions
|
|
@ -108,7 +108,7 @@ class DLFPBackend(BaseBackend, ICapMessages, ICapMessagesPost, ICapContent):
|
|||
# Check if we have seen all comments of this thread.
|
||||
oldhash = self.storage.get('hash', id, default="")
|
||||
newhash = self.browser.get_hash(thread._rsscomment)
|
||||
if not getseen and oldhash == newhash:
|
||||
if not getseen and (oldhash == newhash or newhash is None):
|
||||
return None
|
||||
self.storage.set('hash', id, newhash)
|
||||
if thread.date:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue