mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #3425 from omnivore-app/fix/rss-do-not-fetch-medium-dot-com
Dont not fetch content for medium.com rss feeds
This commit is contained in:
commit
7ab5d50fd1
1 changed files with 3 additions and 0 deletions
|
|
@ -123,6 +123,9 @@ export const isContentFetchBlocked = (feedUrl: string) => {
|
|||
if (feedUrl.startsWith('https://lwn.net/headlines/newrss')) {
|
||||
return true
|
||||
}
|
||||
if (feedUrl.startsWith('https://medium.com')) {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue