mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Only deactivating feed exceptions. Turning page exceptions back on, since they can now be handled in the UI.
This commit is contained in:
parent
ebacf13670
commit
f5e36c5b8e
1 changed files with 1 additions and 1 deletions
|
@ -169,9 +169,9 @@ class Feed(models.Model):
|
||||||
if len(non_errors) == 0 and len(errors) >= 1:
|
if len(non_errors) == 0 and len(errors) >= 1:
|
||||||
if exception_type == 'feed':
|
if exception_type == 'feed':
|
||||||
self.has_feed_exception = True
|
self.has_feed_exception = True
|
||||||
|
self.active = False
|
||||||
elif exception_type == 'page':
|
elif exception_type == 'page':
|
||||||
self.has_page_exception = True
|
self.has_page_exception = True
|
||||||
self.active = False
|
|
||||||
self.exception_code = status_code
|
self.exception_code = status_code
|
||||||
self.save()
|
self.save()
|
||||||
elif self.exception_code > 0:
|
elif self.exception_code > 0:
|
||||||
|
|
Loading…
Add table
Reference in a new issue