fixes for specific paths

This commit is contained in:
m957ymj75urz 2023-03-16 19:48:59 +01:00
parent 629272c0ca
commit 16001e9429
2 changed files with 6 additions and 3 deletions

View File

@ -802,8 +802,9 @@ class SaveImage:
digits = 0
return (digits, prefix)
subfolder = os.path.dirname(filename_prefix)
filename = os.path.basename(filename_prefix)
subfolder = os.path.dirname(os.path.normpath(filename_prefix))
filename = os.path.basename(os.path.normpath(filename_prefix))
full_output_folder = os.path.join(self.output_dir, subfolder)
if os.path.commonpath((self.output_dir, os.path.realpath(full_output_folder))) != self.output_dir:

View File

@ -110,9 +110,11 @@ class ComfyApp {
const img = new Image();
img.onload = () => r(img);
img.onerror = () => r(null);
var filename = src.replace(/^.*[\\\/]/, '');
var subfolder = src.replace(filename, '');
img.src = "/view?file=" + filename + "&subfolder=" + subfolder;
var params = new URLSearchParams({file: filename, subfolder});
img.src = "/view?" + params.toString();
});
})
).then((imgs) => {