fix error

This commit is contained in:
chiu 2020-08-21 19:04:16 +08:00
parent 029cd6881a
commit 7b0f6ddd10
1 changed files with 2 additions and 2 deletions

View File

@ -277,9 +277,9 @@ class Admin::AsksController < OrbitAdminController
ask_setting = AskSetting.create() if ask_setting.nil?
end
if temp_params['custom_values'].nil?
temp_params['custom_values'] = ask_setting.custom_values
temp_params['custom_values'] = @ask_question.custom_values
else
temp_params['custom_values'] = ask_setting.custom_values.merge(temp_params['custom_values'])
temp_params['custom_values'] = @ask_question.custom_values.merge(temp_params['custom_values'])
end
ask_setting.custom_fields.select{|k,v| v['type']=='file' || v['type']=='image'}.each do |k,v|
file = temp_params['custom_values'][k] rescue nil