fix error

This commit is contained in:
chiu 2020-08-21 18:15:35 +08:00
parent ea2f8ebf24
commit 4b1e219445
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ class Admin::AsksController < OrbitAdminController
ask_setting = AskSetting.create() if ask_setting.nil?
end
ask_setting.custom_fields.select{|k,v| v['type']=='file' || v['type']=='image'}.each do |k,v|
file = temp_params['custom_values'][k]
file = temp_params['custom_values'][k] rescue nil
if !file.blank?
if v['type']=='image'
all_to_save += [[k,AskImage.new(file: file,ask_question_id: @ask_question.id)]]