IV: check for 404 and 500 for subscriptions (#4410)

This commit is contained in:
ChunkyProgrammer
2023-12-01 17:00:11 +00:00
committed by GitHub
parent 138f0c18ca
commit a67541ed03
3 changed files with 3 additions and 3 deletions
@@ -305,7 +305,7 @@ export default defineComponent({
try {
const response = await fetch(feedUrl)
if (response.status === 500) {
if (response.status === 500 || response.status === 404) {
return []
}
@@ -199,7 +199,7 @@ export default defineComponent({
try {
const response = await fetch(feedUrl)
if (response.status === 500) {
if (response.status === 500 || response.status === 404) {
return []
}
@@ -302,7 +302,7 @@ export default defineComponent({
try {
const response = await fetch(feedUrl)
if (response.status === 500) {
if (response.status === 500 || response.status === 404) {
this.errorChannels.push(channel)
return []
}