Skip to content

Commit

Permalink
changed gogo source
Browse files Browse the repository at this point in the history
  • Loading branch information
frostnova721 committed Jun 13, 2024
1 parent 8e062e0 commit 9ccdddb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Lib/Database/Episodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class Episodes {
for (let i = 0; i < eps.episodes; i++) {
episodeArray.push({
episodeNumber: i + 1,
link: `https://gogoanime3.net${eps.link.trim()}${i + 1}`,
link: `https://ww5.gogoanimes.fi${eps.link.trim()}${i + 1}`,
});
}
return episodeArray;
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Extractors/Gogo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class Gogo {
iv: CryptoJS.enc.Utf8.parse('3134003223491201'),
};

private readonly baseUrl = `https://gogoanime3.net`;
private readonly baseUrl = `https://ww5.gogoanimes.fi`;

public extractGogo = async (
episodeId: string,
Expand Down
4 changes: 2 additions & 2 deletions src/Lib/Providers/GogoStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Gogo, StreamWish } from '..';
export class GogoStreams {
constructor() {}

private readonly baseUrl = `https://gogoanime3.net`;
private readonly baseUrl = `https://ww5.gogoanimes.fi`;
private readonly ajaxUrl = `https://ajax.gogocdn.net/ajax`;

public searchForAnime = async (
Expand Down Expand Up @@ -97,7 +97,7 @@ export class GogoStreams {
}
try {
//current src link (embtaku.pro) works when using vpn. otherwise its giving conn timed out
// vidStreaming = (await gogo.extractGogo(episodeId, quality)).sources
vidStreaming = (await gogo.extractGogo(episodeId, quality)).sources
} catch (err) {
//ignore
}
Expand Down
2 changes: 1 addition & 1 deletion src/Render/renderWatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ async function loadGogoStreams(anime: string, ep: number, link?: string) {
} else {
const search = await gogoSearch(decodeURIComponent(anime));
const link = await getEpisodeLink(search[0].alias);
sources = await getGogoStreams(`https://gogoanime3.net${link.link.trim()}` + ep);
sources = await getGogoStreams(`https://ww5.gogoanimes.fi${link.link.trim()}` + ep);
}

if (selectedProvider === 'gogoanime') {
Expand Down

0 comments on commit 9ccdddb

Please sign in to comment.