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
This redundant encodeURIComponent encodes = and & characters in the already serialized string.
For example gameId=foo&gameId=bar becomes gameId%3Dfoo%26gameId%3Dbar
The text was updated successfully, but these errors were encountered:
I don't understand why do you need
encodeURIComponent
since you already delegate serialization to the userRecoil/packages/recoil-sync/RecoilSync_URL.js
Line 108 in c1b97f3
My use-case is the following:
This redundant
encodeURIComponent
encodes=
and&
characters in the already serialized string.For example
gameId=foo&gameId=bar
becomesgameId%3Dfoo%26gameId%3Dbar
The text was updated successfully, but these errors were encountered: