Skip to content
Snippets Groups Projects
Commit 4ff1fd6c authored by Xiao Gui's avatar Xiao Gui
Browse files

bugfix: remove rate limiting for get req

parent 76bc8b98
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ const getFile = async name => {
return value
}
router.get('/:name', DISABLE_LIMITER ? passthrough : limiter, async (req, res) => {
router.get('/:name', async (req, res) => {
const { name } = req.params
const { headers } = req
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment