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
If you use any other truthy value (including true, numbers, or anthing else other than nil) it sends correctely
Desired:
false and true are treated the same way. Maybe nil is different?
Notes:
The behavior comes from this line - that condition is falsy with false or nil so nothing is done
Maybe the behavior of false and nil should be thought about here? To me false should be merged in like a normal value and nil indicates that we want to remove that value in the merged hash. But maybe others feel differently?
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Try to add some scope with a
false
value:Observed:
example
key does not appear on the exceptiontrue
, numbers, or anthing else other thannil
) it sends correctelyDesired:
false
andtrue
are treated the same way. Maybenil
is different?Notes:
false
ornil
so nothing is donefalse
andnil
should be thought about here? To mefalse
should be merged in like a normal value andnil
indicates that we want to remove that value in the merged hash. But maybe others feel differently?The text was updated successfully, but these errors were encountered: