mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Correcting for feedburner stupidity.
This commit is contained in:
parent
8344cd88e6
commit
f7f9565756
1 changed files with 2 additions and 1 deletions
|
@ -438,7 +438,8 @@ class Feed(models.Model):
|
|||
feed_address = feed_address_from_link
|
||||
|
||||
if feed_address:
|
||||
if feed_address.endswith('feedburner.com/atom.xml'):
|
||||
if (feed_address.endswith('feedburner.com/atom.xml') or
|
||||
feed_address.endswith('feedburner.com/feed/')):
|
||||
logging.debug(" ---> Feed points to 'Wierdo', ignoring.")
|
||||
return False, self
|
||||
try:
|
||||
|
|
Loading…
Add table
Reference in a new issue