We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01a7b40 + 769481a commit 693f4f2Copy full SHA for 693f4f2
lib/Tmdb/Factory/ImageFactory.php
@@ -81,6 +81,11 @@ public function createMediaImage(array $data = [])
81
$factory = new TvFactory($this->getHttpClient());
82
break;
83
84
+ // I don't think this ever occurs, but just in case..
85
+ case "episode":
86
+ $factory = new TvEpisodeFactory($this->getHttpClient());
87
+ break;
88
+
89
// I don't think this ever occurs, but just in case..
90
case "person":
91
$factory = new PeopleFactory($this->getHttpClient());
0 commit comments