You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In versions prior to 2.9.0, one could set an integer setting to nil (or not set it at all). Now, due to deserialize method that forces to_i, a nil value deserializes to 0 instead of nil.
Therefore, it breaks any code checking for nil setting. I believe nil should be a legitimate value that should be allowed for an integer setting.
The text was updated successfully, but these errors were encountered:
In versions prior to 2.9.0, one could set an integer setting to
nil
(or not set it at all). Now, due todeserialize
method that forcesto_i
, anil
value deserializes to0
instead ofnil
.Therefore, it breaks any code checking for
nil
setting. I believenil
should be a legitimate value that should be allowed for aninteger
setting.The text was updated successfully, but these errors were encountered: