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
MVT doesn't have a native list value type, but we can fake it by encoding lists to something like "list:" + value.to_json, and parse it from JSON when the prefix is list: when decoding. This runs the risk of decoding things which start with list: which aren't actually lists, but I think there are few enough of them?
The text was updated successfully, but these errors were encountered:
MVT doesn't have a native list value type, but we can fake it by encoding lists to something like
"list:" + value.to_json
, and parse it from JSON when the prefix islist:
when decoding. This runs the risk of decoding things which start withlist:
which aren't actually lists, but I think there are few enough of them?The text was updated successfully, but these errors were encountered: