Merge pull request #1228 from okriuchykhin/ok_SCI_2585

Fix inventory cell copy with file attached [SCI-2585]
This commit is contained in:
Luka Murn 2018-07-06 10:45:44 +02:00 committed by GitHub
commit 95b832800f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,22 +88,8 @@ module RepositoryActions
new_asset.file.reprocess!(:medium)
end
# Clone extracted text data if it exists
if old_asset.asset_text_datum
AssetTextDatum.create(data: new_asset.data, asset: new_asset)
end
new_asset.post_process_file(new_asset.team)
# Update estimated size of cloned asset
# (& file_present flag)
new_asset.update(
estimated_size: old_asset.estimated_size,
file_present: true
)
# Update team's space taken
@team.reload
@team.take_space(new_asset.estimated_size)
@team.save!
new_asset
end
end