mirror of
https://github.com/sussy-code/providers.git
synced 2026-03-11 17:55:37 +00:00
Fix parameter type in getVideoSources function
This commit is contained in:
parent
7dcd9dd3bb
commit
0e47b53bba
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import { ScrapeContext } from '@/utils/context';
|
|||
|
||||
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
|
||||
|
||||
let path = '';
|
||||
|
|
|
|||
Loading…
Reference in a new issue