From b4fcb4d2f10cf7569ff73a0b9e364b0d71b11042 Mon Sep 17 00:00:00 2001 From: Harry Bomrah Date: Mon, 15 Feb 2016 18:50:23 +0800 Subject: [PATCH] small fix --- app/models/writing_conference.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/writing_conference.rb b/app/models/writing_conference.rb index bfbf21b..f4680c9 100644 --- a/app/models/writing_conference.rb +++ b/app/models/writing_conference.rb @@ -77,7 +77,7 @@ class WritingConference fields_to_show.each do |t| if (self.fields[t].type.to_s == "String" rescue false) - fields_to_remove << t if (datas.where(t.to_sym.ne => nil, t.to_sym.ne => "").count == 0 rescue false) + fields_to_remove << t if (datas.where(t.to_sym.ne => nil).or(t.to_sym.ne => "").count == 0 rescue false) else fields_to_remove << t if (datas.where(t.to_sym.ne => nil).count == 0 rescue false) end