diff --git a/invokeai/app/services/image_storage.py b/invokeai/app/services/image_storage.py index c25ca242e1..c5e5cf8a8e 100644 --- a/invokeai/app/services/image_storage.py +++ b/invokeai/app/services/image_storage.py @@ -187,7 +187,9 @@ class DiskImageStorage(ImageStorageBase): else: path = os.path.join(self.__output_folder, image_type, basename) - return path + abspath = os.path.abspath(path) + + return abspath def get_uri( self, image_type: ImageType, image_name: str, is_thumbnail: bool = False