Not sure what is causing this but when a link is posted and it's click on by a user it throws this exception:
Exception:
Flarum \ Http \ Exception \ RouteNotFoundException
Stack Trace:
public function process(Request $request, Handler $handler): Response
{
$method = $request->getMethod();
$uri = $request->getUri()->getPath() ?: '/';
$routeInfo = $this->getDispatcher()->dispatch($method, $uri);
switch ($routeInfo[0]) {
case Dispatcher::NOT_FOUND:
throw new RouteNotFoundException($uri);
case Dispatcher::METHOD_NOT_ALLOWED:
throw new MethodNotAllowedException($method);
case Dispatcher::FOUND:
$handler = $routeInfo[1];
$parameters = $routeInfo[2];
return $handler($request, $parameters);
}
}
/var/app/current/vendor/flarum/core/src/Http/Middleware/DispatchRoute.php