Normalized the apiName fields

This commit is contained in:
ltctceplrm 2024-01-31 22:37:19 +01:00
parent 867bfec6c5
commit 2ea237822e
3 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@ export class MALAPIManga extends APIModel {
super();
this.plugin = plugin;
this.apiName = 'MALAPI Manga';
this.apiName = 'MALAPIManga';
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];

View file

@ -13,7 +13,7 @@ export class MusicBrainzAPI extends APIModel {
super();
this.plugin = plugin;
this.apiName = 'MusicBrainz API';
this.apiName = 'MusicBrainzAPI';
this.apiDescription = 'Free API for music albums.';
this.apiUrl = 'https://musicbrainz.org/';
this.types = [MediaType.MusicRelease];

View file

@ -12,7 +12,7 @@ export class WikipediaAPI extends APIModel {
super();
this.plugin = plugin;
this.apiName = 'Wikipedia API';
this.apiName = 'WikipediaAPI';
this.apiDescription = 'The API behind Wikipedia';
this.apiUrl = 'https://www.wikipedia.com';
this.types = [MediaType.Wiki];