mitch-avis
Results
1
comments of
mitch-avis
A better fix might be to add `and os.path.exists(workflow_templates_path)` to line 851 in `server.py` (https://github.com/comfyanonymous/ComfyUI/blob/a1a70362ca376cff05a0514e0ce771ab26d92fd9/server.py#L851), so that it becomes: ``` workflow_templates_path = FrontendManager.templates_path() if workflow_templates_path and os.path.exists(workflow_templates_path): self.app.add_routes([ web.static('/templates', workflow_templates_path)...