Skip to content

Commit

Permalink
Reverted the api names
Browse files Browse the repository at this point in the history
For MAL, MusicBrainz and Wikipedia
  • Loading branch information
ltctceplrm committed Feb 1, 2024
1 parent 675a0f7 commit 54766bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/api/apis/MALAPIManga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class MALAPIManga extends APIModel {
super();

this.plugin = plugin;
this.apiName = 'MALAPIManga';
this.apiName = 'MALAPI Manga';
this.apiDescription = 'A free API for Manga. Some results may take a long time to load.';
this.apiUrl = 'https://jikan.moe/';
this.types = [MediaType.Manga];
Expand Down
2 changes: 1 addition & 1 deletion src/api/apis/MusicBrainzAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class MusicBrainzAPI extends APIModel {
super();

this.plugin = plugin;
this.apiName = 'MusicBrainzAPI';
this.apiName = 'MusicBrainz API';
this.apiDescription = 'Free API for music albums.';
this.apiUrl = 'https://musicbrainz.org/';
this.types = [MediaType.MusicRelease];
Expand Down
2 changes: 1 addition & 1 deletion src/api/apis/WikipediaAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class WikipediaAPI extends APIModel {
super();

this.plugin = plugin;
this.apiName = 'WikipediaAPI';
this.apiName = 'Wikipedia API';
this.apiDescription = 'The API behind Wikipedia';
this.apiUrl = 'https://www.wikipedia.com';
this.types = [MediaType.Wiki];
Expand Down

0 comments on commit 54766bb

Please sign in to comment.