Fixed the thumbnailing.

This commit is contained in:
flash 2024-03-30 01:25:35 +00:00
parent d5b3f3c66f
commit b45fee1b7e

View file

@ -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(...));
}
}