aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-03-14 11:12:31 +0300
committerGitHub <noreply@github.com>2023-03-14 11:12:31 +0300
commit58c4777cc0e2ef1c1ac76cbfbec6eab330de931a (patch)
treeaebe389c342603e09774b5fadc364cf7ca80e995
parentc19530f1a590d758463f84523dd4c48c34d723e6 (diff)
parent4281432594084bc846cc834c807ac57f59457eae (diff)
Merge pull request #8607 from willtakasan/patch-2
Update ui_extra_networks.py
-rw-r--r--modules/ui_extra_networks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui_extra_networks.py b/modules/ui_extra_networks.py
index b5847299..cdfd6f2a 100644
--- a/modules/ui_extra_networks.py
+++ b/modules/ui_extra_networks.py
@@ -30,8 +30,8 @@ def add_pages_to_demo(app):
raise ValueError(f"File cannot be fetched: {filename}. Must be in one of directories registered by extra pages.")
ext = os.path.splitext(filename)[1].lower()
- if ext not in (".png", ".jpg"):
- raise ValueError(f"File cannot be fetched: {filename}. Only png and jpg.")
+ if ext not in (".png", ".jpg", ".webp"):
+ raise ValueError(f"File cannot be fetched: {filename}. Only png and jpg and webp.")
# would profit from returning 304
return FileResponse(filename, headers={"Accept-Ranges": "bytes"})