-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Gogoanime Base URL to anitaku.bz
#597
Update Gogoanime Base URL to anitaku.bz
#597
Conversation
- Updated Kitsu GraphQL and media URLs from `kitsu.io` to `kitsu.app`. - Fixes `404` errors caused by Kitsu's recent domain and CDN switch. - Affected files: `anilist.js`, `mal.js`, `anilist.ts`, `mal.ts`, and docs.
- Updated Gogoanime base URL from `anitaku.pe` to `anitaku.bz`. - Affected files: `gogoanime.js`, `gogoanime.ts`, and documentation.
@@ -181,7 +181,7 @@ output: | |||
title: 'Kingdom 5th Season (Chinese Name)', | |||
image: 'https://gogocdn.net/cover/kingdom-5th-season-chinese-name.png', | |||
released: '2025', | |||
url: 'https://anitaku.pe//category/kingdom-5th-season-chinese-name' | |||
url: 'https://anitaku.bz///category/kingdom-5th-season-chinese-name' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's ///
consecutive slashes on the link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow... embarrassing, good catch, sorry about that.
@@ -20,7 +20,7 @@ import { GogoCDN, Mp4Upload, StreamSB, StreamWish } from '../../extractors'; | |||
|
|||
class Gogoanime extends AnimeParser { | |||
override readonly name = 'Gogoanime'; | |||
protected override baseUrl = 'https://anitaku.pe'; | |||
protected override baseUrl = 'https://anitaku.bz/'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be just https://anitaku.bz
without the slash at the end I believe 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
another rookie mistake 😭 , mb.
anitaku.pe
toanitaku.bz
.gogoanime.js
,gogoanime.ts
, and docs.What kind of change does this PR introduce?
Bugfix.
Did you add tests for your changes?
No new tests needed—just a URL update. Existing tests cover this.
If relevant, did you update the documentation?
Yes, the documentation has been updated to reflect the new Gogoanime URLs.
Summary
anitaku.pe
now redirects toanitaku.bz
, so this change is just to avoid any issues down the line if the redirect is removed.Other information
A quick review and merge would be appreciated.