Skip to content

Commit

Permalink
fix character pictures not parsing #359 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
irfan-dahir committed Oct 1, 2021
1 parent 9e684d7 commit 31ff8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Request/Character/CharacterPicturesRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public function __construct(int $id)
public function getPath(): string
{
// MyAnimeList wants <something> after /<id>/... it happily accepts jikan as a valid parameter though
return sprintf('https://myanimelist.net/character/%d/jikan/pictures', $this->id);
return sprintf('https://myanimelist.net/character/%d/jikan/pics', $this->id);
}
}

0 comments on commit 31ff8d4

Please sign in to comment.