fix when lefigaro's feed is wrong
This commit is contained in:
parent
0e430f9ccc
commit
c6443b9725
2 changed files with 11 additions and 2 deletions
|
|
@ -44,6 +44,9 @@ class GenericNewspaperBackend(BaseBackend, ICapMessages):
|
|||
with self.browser:
|
||||
content = self.browser.get_content(_id)
|
||||
|
||||
if content is None:
|
||||
return None
|
||||
|
||||
if not thread:
|
||||
thread = Thread(_id)
|
||||
|
||||
|
|
@ -77,7 +80,8 @@ class GenericNewspaperBackend(BaseBackend, ICapMessages):
|
|||
|
||||
def fill_thread(self, thread, fields):
|
||||
"fill the thread"
|
||||
return self.get_thread(thread)
|
||||
t = self.get_thread(thread)
|
||||
return t or thread
|
||||
|
||||
def iter_unread_messages(self, thread=None):
|
||||
for thread in self.iter_threads():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue