consumet / consumet.ts

Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
https://consumet.org/extensions/list/
GNU General Public License v3.0
376 stars 205 forks source link

MovieHdWatch and Goku Provides Return 404 When Request A Episode Sources #554

Open GathsaraH opened 2 weeks ago

GathsaraH commented 2 weeks ago

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