From da7a267e2a00d5e99afbbb6a8496a2543d749cc9 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Wed, 17 Sep 2025 11:52:41 -0500 Subject: [PATCH] fix(GetMediaInfoHandler): missing handler for TvEpisode type --- src/Search/Action/Handler/GetMediaInfoHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Search/Action/Handler/GetMediaInfoHandler.php b/src/Search/Action/Handler/GetMediaInfoHandler.php index b660158..94be583 100644 --- a/src/Search/Action/Handler/GetMediaInfoHandler.php +++ b/src/Search/Action/Handler/GetMediaInfoHandler.php @@ -23,6 +23,7 @@ class GetMediaInfoHandler implements HandlerInterface $handlers = [ MediaType::Movie->value => 'getMovieDetails', MediaType::TvShow->value => 'getTvshowDetails', + MediaType::TvEpisode->value => 'getTvshowDetails', ]; $handler = $handlers[$command->mediaType]; $media = $this->$handler($command);