diff --git a/src/Tmdb/Tmdb.php b/src/Tmdb/Tmdb.php index 3ad2b77..35ed087 100644 --- a/src/Tmdb/Tmdb.php +++ b/src/Tmdb/Tmdb.php @@ -274,7 +274,7 @@ class Tmdb private function parseEpisode(array $data, string $posterBasePath): TmdbResult { return new TmdbResult( - imdbId: $data['external_ids']['imdb_id'] ?? $this->getImdbId($data['id'], 'tvshows'), + imdbId: $data['external_ids']['imdb_id'], tmdbId: $data['id'], title: $data['name'], poster: (null !== $data['still_path']) ? $posterBasePath . $data['still_path'] : null,