fix: links to media by imdb id

This commit is contained in:
2025-06-07 10:13:40 -05:00
parent 6d4bbf2e72
commit ac6276f444
9 changed files with 26 additions and 13 deletions

View File

@@ -18,7 +18,7 @@ class GetMediaInfoHandler implements HandlerInterface
public function handle(CommandInterface $command): ResultInterface
{
$media = $this->tmdb->mediaDetails($command->tmdbId, $command->mediaType);
$media = $this->tmdb->mediaDetails($command->imdbId, $command->mediaType);
return new GetMediaInfoResult($media);
}