Dont not fetch content for medium.com rss feeds

All these are blocked
This commit is contained in:
Jackson Harper 2024-01-24 02:11:37 +08:00
parent 632ca0557f
commit 58d41951c2

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
}