diff --git a/src/Uploads/UploadsRoutes.php b/src/Uploads/UploadsRoutes.php index c161a5f..f9ea15d 100644 --- a/src/Uploads/UploadsRoutes.php +++ b/src/Uploads/UploadsRoutes.php @@ -22,7 +22,7 @@ class UploadsRoutes implements IRouteHandler { HandlerAttribute::register($router, $this); } else { $router->options('/', $this->getUpload(...)); - $router->get('/([A-Za-z0-9]+)', $this->getUpload(...)); + $router->get('/([A-Za-z0-9]+)(?:\.(t))?', $this->getUpload(...)); } }