consumet.ts icon indicating copy to clipboard operation
consumet.ts copied to clipboard

MovieHdWatch and Goku Provides Return 404 When Request A Episode Sources

Open GathsaraH opened this issue 8 months ago • 2 comments

Describe the bug

MovieHdWatch and Goku Can't receive Episode Sources

Steps to reproduce

  1. Download the npm package
  2. Import provider's as mentioned in documents
  3. Try get get episode sourse detail

Expected behavior

Need to return episode source details as mentioned in the document

Actual behavior

Instead of episode details it's returning 404

Additional context

@Injectable()
export class TvShowsService {
  private moviesHd: MovieHdWatch;

  constructor() {
    this.moviesHd = new MOVIES.MovieHdWatch();
  }

  async fetchEpisodeSources(sourceNumber: string, sourceLink: string) {
    try {
      return await this.moviesHd.fetchEpisodeSources('1429498', 'tv/watch-lovely-runner-online-107908');
    } catch (e) {
      console.log(e);
      throw e;
    }
  }

CleanShot 2024-06-23 at 17 07 20

GathsaraH avatar Jun 23 '24 11:06 GathsaraH