mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Handling missing feed
This commit is contained in:
parent
3cf7f1e7c8
commit
fa78ec335a
1 changed files with 3 additions and 0 deletions
|
@ -625,6 +625,9 @@ class ProcessFeed:
|
|||
"""
|
||||
ret_values = dict(new=0, updated=0, same=0, error=0)
|
||||
|
||||
if not self.feed:
|
||||
return FEED_ERREXC, ret_values
|
||||
|
||||
if hasattr(self.fpf, 'status'):
|
||||
if self.options['verbose']:
|
||||
if self.fpf.bozo and self.fpf.status != 304:
|
||||
|
|
Loading…
Add table
Reference in a new issue