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:
Jackson Harper 2024-01-24 08:41:39 +08:00 committed by GitHub
commit 7ab5d50fd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}