mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Exclude CN and ES lang content
This commit is contained in:
parent
ce79c26d84
commit
98a17ad96a
1 changed files with 4 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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue