In ViewExecutable.php, at line 1932, $this->routeProvider is empty. I needed to add
if (!$this->routeProvider) {
$this->routeProvider = \Drupal::service('router.route_provider');
}
to make it work again.
In ViewExecutable.php, at line 1932, $this->routeProvider is empty. I needed to add
if (!$this->routeProvider) {
$this->routeProvider = \Drupal::service('router.route_provider');
}
to make it work again.