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.
1 parent b3ff77b commit 11f01edCopy full SHA for 11f01ed
src/imdb.php
@@ -80,7 +80,7 @@ public function film(string $filmId, array $options = []): array
80
$response->add("poster", $htmlPieces->get($page, "poster"));
81
$response->add("trailer", $htmlPieces->get($page, "trailer"));
82
$response->add("cast", $htmlPieces->get($page, "cast"));
83
- $response->add("technical_specs", $htmlPieces->get($page, "technical_specs"));
+ $response->add("technical_specs", $options["techSpecs"] ? $htmlPieces->get($page, "technical_specs") : "");
84
85
// Return the response $store
86
return $response->return();
0 commit comments