diff --git a/files/routes/static.py b/files/routes/static.py index 707665d32..fe0716379 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -243,10 +243,10 @@ def emoji(emoji): resp.headers.add("Content-Type", "image/webp") return resp -@app.get('/i/') +@app.get('/i/') @limiter.exempt -def image(image): - resp = make_response(send_from_directory('assets/images', image)) +def image(path): + resp = make_response(send_from_directory('assets/images', path)) if request.path.endswith('.webp') or request.path.endswith('.gif') or request.path.endswith('.ttf') or request.path.endswith('.woff2'): resp.headers.remove("Cache-Control") resp.headers.add("Cache-Control", "public, max-age=3153600")