aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/images.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/images.py b/modules/images.py
index 7df2b08c..4c204fca 100644
--- a/modules/images.py
+++ b/modules/images.py
@@ -512,6 +512,9 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
file_decoration = "-" + file_decoration
file_decoration = namegen.apply(file_decoration) + suffix
+ if hasattr(os, 'statvfs'):
+ max_name_len = os.statvfs(path).f_namemax
+ file_decoration = file_decoration[:max_name_len - 5]
if add_number:
basecount = get_next_sequence_number(path, basename)