Updating containers and mobile styles, allowing for local videos.

This commit is contained in:
Dan Chadwick
2024-08-25 19:36:28 -04:00
parent 7304c4b0d7
commit 025c63e1dd
11 changed files with 105 additions and 58 deletions

View File

@@ -38,7 +38,7 @@ class KernelRequestNodePathCheck implements EventSubscriberInterface {
$current_request = \Drupal::requestStack()->getCurrentRequest();
$path = \Drupal::request()->getRequestUri();
if (str_contains($path, '/node/')) {
throw new NotFoundHttpException();
return new NotFoundHttpException();
}
}
}