Failed file upload shouldn't crash phpBB3 importer

This commit is contained in:
Gerhard Schlager
2016-01-13 22:46:03 +01:00
parent 166c56ee0d
commit bed9135f40
3 changed files with 5 additions and 4 deletions
@@ -65,7 +65,7 @@ module ImportScripts::PhpBB3
filename = File.basename(path)
upload = @uploader.create_upload(Discourse::SYSTEM_USER_ID, path, filename)
if upload.nil? || !upload.valid?
if upload.nil? || !upload.persisted?
puts "Failed to upload #{path}"
puts upload.errors.inspect if upload
html = nil