Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 14613e6395 - Show all commits

View File

@ -276,7 +276,7 @@ final class Model
* this way is more accurate than getting the list item id
* directly from the MAL id
*/
private function getListIdFromMediaId(string $mediaId): string
private function getListIdFromMediaId(string $mediaId): ?string
{
$config = $this->container->get('config');
$anilistUser = $config->get(['anilist', 'username']);
@ -286,7 +286,9 @@ final class Model
'userName' => $anilistUser,
]);
return (string)$info['data']['MediaList']['id'];
$data = $info['data']['MediaList'];
return ($data !== NULL) ? (string)$data['id'] : NULL;
}
/**