mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 00:33:26 +02:00
Merge branch 'patch-4' of https://github.com/bobbysteel/calibre
This commit is contained in:
commit
5f64b78cc9
2 changed files with 8 additions and 0 deletions
|
|
@ -365,6 +365,10 @@ def exclude_url(self, url):
|
|||
return True
|
||||
if 'nytimes.com' not in url:
|
||||
return True
|
||||
if 'cn.nytimes.com' in url:
|
||||
return True
|
||||
if '/es/' in url:
|
||||
return True
|
||||
if 'podcast' in url:
|
||||
return True
|
||||
if '/video/' in url:
|
||||
|
|
|
|||
|
|
@ -365,6 +365,10 @@ def exclude_url(self, url):
|
|||
return True
|
||||
if 'nytimes.com' not in url:
|
||||
return True
|
||||
if 'cn.nytimes.com' in url:
|
||||
return True
|
||||
if '/es/' in url:
|
||||
return True
|
||||
if 'podcast' in url:
|
||||
return True
|
||||
if '/video/' in url:
|
||||
|
|
|
|||
Loading…
Reference in a new issue