Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix CSV file path handling in zip imports #1012

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/parsers/bulkrax/csv_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,10 @@ def unique_collection_identifier(collection_hash)
# We expect a single CSV at the top level of the zip in the CSVParser
# but we are willing to go look for it if need be
def real_import_file_path
return Dir["#{importer_unzip_path}/**/*.csv"].reject { |path| in_files_dir?(path) }.first if file? && zip?
if file? && zip?
csv_files = Dir["#{importer_unzip_path}/**/*.csv"].reject { |path| in_files_dir?(path) }
return csv_files.first if csv_files.any?
end

parser_fields['import_file_path']
end
Expand Down
Loading