Allow output folder to be a symbolic link

This commit is contained in:
Jairo Correa
2023-03-23 21:25:21 -03:00
parent dd095efc2c
commit 4f24e6a13b
2 changed files with 2 additions and 2 deletions

View File

@@ -752,7 +752,7 @@ class SaveImage:
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:
if os.path.commonpath((self.output_dir, os.path.abspath(full_output_folder))) != self.output_dir:
print("Saving image outside the output folder is not allowed.")
return {}