This commit is contained in:
2021-03-16 14:39:09 +08:00
parent a384d3ddfc
commit 69830297ea
+1 -1
View File
@@ -445,7 +445,7 @@ class Request extends HttpService
*/ */
public function dispatch(): mixed public function dispatch(): mixed
{ {
return $this->is('favicon.ico') ? \send(null) : \router(); return $this->is('favicon.ico') ? \send(null) : \router()->dispatch();
} }