Add rss.arxiv and daringfireball to content fetch block lists

This commit is contained in:
Jackson Harper
2024-02-03 10:01:18 +08:00
parent 9102fc9ae4
commit 36915ec1ec

View File

@ -126,6 +126,12 @@ export const isContentFetchBlocked = (feedUrl: string) => {
if (feedUrl.startsWith('https://arxiv.org/')) {
return true
}
if (feedUrl.startsWith('https://rss.arxiv.org')) {
return true
}
if (feedUrl.startsWith('https://daringfireball.net/feeds/')) {
return true
}
if (feedUrl.startsWith('https://lwn.net/headlines/newrss')) {
return true
}