mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-02-28 22:51:45 +00:00
Fix incorrect Content-Type for WebP images (#6752)
This commit is contained in:
parent
4027466c80
commit
e57d2282d1
@ -150,7 +150,8 @@ class PromptServer():
|
|||||||
PromptServer.instance = self
|
PromptServer.instance = self
|
||||||
|
|
||||||
mimetypes.init()
|
mimetypes.init()
|
||||||
mimetypes.types_map['.js'] = 'application/javascript; charset=utf-8'
|
mimetypes.add_type('application/javascript; charset=utf-8', '.js')
|
||||||
|
mimetypes.add_type('image/webp', '.webp')
|
||||||
|
|
||||||
self.user_manager = UserManager()
|
self.user_manager = UserManager()
|
||||||
self.model_file_manager = ModelFileManager()
|
self.model_file_manager = ModelFileManager()
|
||||||
|
Loading…
Reference in New Issue
Block a user