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
When serializing lists containing nulls, rpc returns different values.
List ["one", null, null] returns ["one", null, null]
List [null, null, "three"] returns [null, null, "three"]
List ["one"] returns ["one"]
But
List [null] returns [ ]
An empty list, as opposed to a list with a single null inside. I was having an error where I expected a number of lists to have the same number of elements inside each, so it broke.
(haven't tested List [null, null, null] - sorry)
The text was updated successfully, but these errors were encountered:
When serializing lists containing nulls, rpc returns different values.
List ["one", null, null] returns ["one", null, null]
List [null, null, "three"] returns [null, null, "three"]
List ["one"] returns ["one"]
But
List [null] returns [ ]
An empty list, as opposed to a list with a single null inside. I was having an error where I expected a number of lists to have the same number of elements inside each, so it broke.
(haven't tested List [null, null, null] - sorry)
The text was updated successfully, but these errors were encountered: