Skip to content
Snippets Groups Projects
Commit 507fc5fe authored by catch's avatar catch
Browse files

Issue #3248014 by daffie, andypost: [Symfony 6] The...

Issue #3248014 by daffie, andypost: [Symfony 6] The Drupal\Tests\media\Kernel\OEmbedIframeControllerTest fails
parent e9e5a0fe
No related branches found
No related tags found
No related merge requests found
......@@ -121,8 +121,8 @@ public static function create(ContainerInterface $container) {
*/
public function render(Request $request) {
$url = $request->query->get('url');
$max_width = $request->query->getInt('max_width', NULL);
$max_height = $request->query->getInt('max_height', NULL);
$max_width = $request->query->getInt('max_width');
$max_height = $request->query->getInt('max_height');
// Hash the URL and max dimensions, and ensure it is equal to the hash
// parameter passed in the query string.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment