mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
_.includes to _.string.contains.
This commit is contained in:
parent
48d6ce665f
commit
35730d49e4
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ NEWSBLUR.utils = {
|
|||
'mlb.com'
|
||||
];
|
||||
return _.any(BROKEN_URLS, function(broken_url) {
|
||||
return _.includes(url, broken_url);
|
||||
return _.string.contains(url, broken_url);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue