diff --git a/src/lib/Subscription.ts b/src/lib/Subscription.ts index 2467d4c..381e3a3 100644 --- a/src/lib/Subscription.ts +++ b/src/lib/Subscription.ts @@ -59,11 +59,6 @@ export default class Subscription { private static isChannelCache: Record = {}; private static isChannelHelper = `const isChannel = (post, channelId) => (typeof post.channel !== 'string' ? post.channel.id : post.channel) === channelId`; - private async fetchTextTracks(attachmentId: string) { - const video = await fApi.content.video(attachmentId); - return video.textTracks?.filter((track) => track.kind === "captions") ?? []; - } - private async *matchChannel(blogPost: BlogPost): AsyncGenerator