From 4b1e219445124d20239175eb25c3eb0444acb238 Mon Sep 17 00:00:00 2001 From: chiu Date: Fri, 21 Aug 2020 18:15:35 +0800 Subject: [PATCH] fix error --- app/controllers/admin/asks_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/admin/asks_controller.rb b/app/controllers/admin/asks_controller.rb index 5e95ee5..fed4633 100644 --- a/app/controllers/admin/asks_controller.rb +++ b/app/controllers/admin/asks_controller.rb @@ -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)]]