Skip to content
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 9anime.ts .Add support for custom 9ANIME_BASE_URL via environm… #636

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/providers/anime/9anime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
override readonly name = '9Anime';
private nineAnimeResolver = '';
private apiKey = '';
protected override baseUrl = 'https://aniwave.to';
protected override baseUrl = process.env.9ANIME_BASE_URL || 'https://aniwave.to';

Check failure on line 28 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

';' expected.

Check failure on line 28 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

';' expected.

Check failure on line 28 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

An identifier or keyword cannot immediately follow a numeric literal.

Check failure on line 28 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Unexpected token. A constructor, method, accessor, or property was expected.
protected override logo =

Check failure on line 29 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Declaration or statement expected.

Check failure on line 29 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Unexpected keyword or identifier.
'https://d1nxzqpcg2bym0.cloudfront.net/google_play/com.my.nineanime/87b2fe48-9c36-11eb-8292-21241b1c199b/128x128';
protected override classPath = 'ANIME.NineAnime';

Check failure on line 31 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Declaration or statement expected.

Check failure on line 31 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Unexpected keyword or identifier.
override readonly isWorking = false;

Check failure on line 32 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Unexpected keyword or identifier.

Check failure on line 32 in src/providers/anime/9anime.ts

View workflow job for this annotation

GitHub Actions / build (14.x)

Declaration or statement expected.

constructor(
nineAnimeResolver?: string,
Expand Down