Update subscriptions.ts

This commit is contained in:
WardPearce
2026-02-14 04:09:05 +13:00
parent 713ede123d
commit f324f0960f
@@ -133,11 +133,11 @@ export async function parseChannelRSS(channelId: string): Promise<void> {
}
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);
}
}
}