Commit 9a2e7e6f by liyijie

fix: 修复false时候导出为空的问题

parent bde9e968
...@@ -211,15 +211,14 @@ module TalltyImportExport ...@@ -211,15 +211,14 @@ module TalltyImportExport
if r.is_a?(Array) if r.is_a?(Array)
r.try(m) || r.try(:[], m.to_i) r.try(m) || r.try(:[], m.to_i)
else else
begin data = r.try(:[], m) rescue nil
r.try(:[], m) if data.nil?
rescue StandardError data = r.try(:[], m.to_sym) rescue nil
nil end
end || begin if data.nil?
r.try(:[], m.to_sym) data = r.try(m) rescue nil
rescue StandardError end
nil data
end || r.try(m)
end end
end end
end end
......
module TalltyImportExport module TalltyImportExport
VERSION = '1.1.3' VERSION = '1.1.5'
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment