From c3afe77e2dcbd54161a6dcc3273efcd47201826e Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Sun, 6 Dec 2020 15:40:04 +1300 Subject: [PATCH] Unsubscribe feed channel if channel not found --- background/feed-update.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/background/feed-update.js b/background/feed-update.js index 3de5edd..9b71187 100644 --- a/background/feed-update.js +++ b/background/feed-update.js @@ -12,6 +12,9 @@ const prepared = { ), channel_refreshed_update: db.prepare( "UPDATE Channels SET refreshed = ? WHERE ucid = ?" + ), + unsubscribe_all_from_channel: db.prepare( + "DELETE FROM Subscriptions WHERE ucid = ?" ) } @@ -85,6 +88,10 @@ class Refresher { console.log(`updated ${root.length} videos for channel ${ucid}`) } else if (root.identifier === "PUBLISHED_DATES_NOT_PROVIDED") { return [] // nothing we can do. skip this iteration. + } else if (root.identifier === "NOT_FOUND") { + // the channel does not exist. we should unsubscribe all users so we don't try again. + console.log(`channel ${ucid} does not exist, unsubscribing all users`) + prepared.unsubscribe_all_from_channel.run(ucid) } else { throw new Error(root.error) }