Skip to content

Commit 595e881

Browse files
authored
Merge pull request #596 from Floppy/fix-batch-rename
Don't rename models if they contain other models
2 parents ffcf29b + bfbf27e commit 595e881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/model.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def create_folder_if_necessary(folder)
7676
end
7777

7878
def move_files
79-
if ActiveModel::Type::Boolean.new.cast(organize)
79+
if ActiveModel::Type::Boolean.new.cast(organize) && !contains_other_models?
8080
old_path = File.join(library.path, path)
8181
new_path = File.join(library.path, formatted_path)
8282
create_folder_if_necessary(File.dirname(new_path))

0 commit comments

Comments
 (0)