diff --git a/materialious/src/lib/api/youtubejs/subscriptions.ts b/materialious/src/lib/api/youtubejs/subscriptions.ts index 3a7bcb6f..7cc1e2f4 100644 --- a/materialious/src/lib/api/youtubejs/subscriptions.ts +++ b/materialious/src/lib/api/youtubejs/subscriptions.ts @@ -133,11 +133,11 @@ export async function parseChannelRSS(channelId: string): Promise { } if (!get(rawMasterKeyStore)) { - await localDb.channelSubscriptions.where('channelId').equals(channelId).modify({ + localDb.channelSubscriptions.where('channelId').equals(channelId).modify({ lastRSSFetch: new Date() }); } else { - await updateRSSLastUpdated(authorId); + updateRSSLastUpdated(authorId); } } }