diff --git a/weboob/backends/fourchan/pages/board.py b/weboob/backends/fourchan/pages/board.py index 5f3a0c6c..0814590f 100644 --- a/weboob/backends/fourchan/pages/board.py +++ b/weboob/backends/fourchan/pages/board.py @@ -84,6 +84,8 @@ class BoardPage(BasePage): filename = span.text article = Message(self.browser, self.board, 0, filename, url) self.articles.append(article) + if article is None: + continue if div.tag == 'input' and div.attrib.get('type', 'checkbox') and div.attrib.get('value', 'delete'): article.id = int(div.attrib.get('name', '0')) if div.tag == 'blockquote':