fix integer cast bug
Gotta love Rails.
This commit is contained in:
parent
90a4c158f7
commit
ea82a96b47
|
@ -173,6 +173,8 @@ class UserSettingsDecorator
|
|||
|
||||
def integer_cast_setting(key, min = nil, max = nil)
|
||||
i = ActiveModel::Type::Integer.new.cast(settings[key])
|
||||
# the cast above doesn't return a number if passed the string "e"
|
||||
i = 0 unless i.is_a? Numeric
|
||||
return min if !min.nil? && i < min
|
||||
return max if !max.nil? && i > max
|
||||
i
|
||||
|
|
Loading…
Reference in a new issue