diff --git a/ahserver/processorResource.py b/ahserver/processorResource.py index 8a939f7..d1b7c57 100644 --- a/ahserver/processorResource.py +++ b/ahserver/processorResource.py @@ -210,7 +210,8 @@ class ProcessorResource(StaticResource,Url2File): '.svg', '.woff', '.woff2', '.ttf', '.eot', '.map', '.webp', '.bmp', '.mp3', '.mp4', '.webm', '.ogg', '.wav') path_lower = request.path.lower() - if any(path_lower.endswith(ext) for ext in static_exts): + # /idfile/ is virtual file storage, not a disk path — skip static fast track + if any(path_lower.endswith(ext) for ext in static_exts) and not path_lower.startswith('/idfile/'): self.parse_request(request) return await super()._handle(request)