Fix parameter type in getVideoSources function

This commit is contained in:
MemeCornucopia
2023-12-14 12:43:20 -05:00
parent 7dcd9dd3bb
commit 0e47b53bba

View File

@@ -3,7 +3,7 @@ import { ScrapeContext } from '@/utils/context';
import { StreamsDataResult } from './type'; import { StreamsDataResult } from './type';
export async function getVideoSources(ctx: ScrapeContext, id: any, media: MovieMedia | ShowMedia): Promise<any> { export async function getVideoSources(ctx: ScrapeContext, id: string, media: MovieMedia | ShowMedia): Promise<any> {
// Fetch video sources // Fetch video sources
let path = ''; let path = '';