From 97353efffbaa8f3a6683898f227e3a8eec1e3247 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Fri, 15 Aug 2025 10:13:12 -0600 Subject: [PATCH] Default higher quality. --- cista/preview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cista/preview.py b/cista/preview.py index 0520a4b..2878d25 100644 --- a/cista/preview.py +++ b/cista/preview.py @@ -30,7 +30,7 @@ async def preview(req, path): """Preview a file""" maxsize = int(req.args.get("px", 1024)) maxzoom = float(req.args.get("zoom", 2.0)) - quality = int(req.args.get("q", 40)) + quality = int(req.args.get("q", 60)) rel = PurePosixPath(sanitize(unquote(path))) path = config.config.path / rel stat = path.lstat()