Skip to content

Commit

Permalink
fix(gogoanime): Removed trailing forward slash in baseUrl (#612)
Browse files Browse the repository at this point in the history
Added a comment to not include trailing forward slashes.
  • Loading branch information
MelvinHK authored Nov 26, 2024
1 parent fe6d44f commit 3f71d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/anime/gogoanime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { GogoCDN, Mp4Upload, StreamSB, StreamWish } from '../../extractors';

class Gogoanime extends AnimeParser {
override readonly name = 'Gogoanime';
protected override baseUrl = 'https://anitaku.bz/';
protected override baseUrl = 'https://anitaku.bz'; // Do not include a trailing forward slash.
protected override logo =
'https://play-lh.googleusercontent.com/MaGEiAEhNHAJXcXKzqTNgxqRmhuKB1rCUgb15UrN_mWUNRnLpO5T1qja64oRasO7mn0';
protected override classPath = 'ANIME.Gogoanime';
Expand Down

0 comments on commit 3f71d41

Please sign in to comment.