Przeglądaj źródła

allow jpeg for extra network preview

w-e-w 2 lat temu
rodzic
commit
a423f23d28
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      modules/ui_extra_networks.py

+ 2 - 2
modules/ui_extra_networks.py

@@ -30,7 +30,7 @@ def fetch_file(filename: str = ""):
         raise ValueError(f"File cannot be fetched: {filename}. Must be in one of directories registered by extra pages.")
         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()
     ext = os.path.splitext(filename)[1].lower()
-    if ext not in (".png", ".jpg", ".webp"):
+    if ext not in (".png", ".jpg", ".jpeg", ".webp"):
         raise ValueError(f"File cannot be fetched: {filename}. Only png and jpg and webp.")
         raise ValueError(f"File cannot be fetched: {filename}. Only png and jpg and webp.")
 
 
     # would profit from returning 304
     # would profit from returning 304
@@ -194,7 +194,7 @@ class ExtraNetworksPage:
         Find a preview PNG for a given path (without extension) and call link_preview on it.
         Find a preview PNG for a given path (without extension) and call link_preview on it.
         """
         """
 
 
-        preview_extensions = ["png", "jpg", "webp"]
+        preview_extensions = ["png", "jpg", "jpeg", "webp"]
         if shared.opts.samples_format not in preview_extensions:
         if shared.opts.samples_format not in preview_extensions:
             preview_extensions.append(shared.opts.samples_format)
             preview_extensions.append(shared.opts.samples_format)