Fix error when uploading malformed CSV import (#19509)
This commit is contained in:
parent
5fa340931e
commit
317ec06dc7
2 changed files with 6 additions and 0 deletions
|
@ -26,6 +26,8 @@ class ImportValidator < ActiveModel::Validator
|
|||
when 'following'
|
||||
validate_following_import(import, row_count)
|
||||
end
|
||||
rescue CSV::MalformedCSVError
|
||||
import.errors.add(:data, :malformed)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue