This commit is contained in:
Kovid Goyal 2017-08-27 21:18:59 +05:30
commit 5f64b78cc9
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 8 additions and 0 deletions

View File

@ -365,6 +365,10 @@ class NYTimes(BasicNewsRecipe):
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:

View File

@ -365,6 +365,10 @@ class NYTimes(BasicNewsRecipe):
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: