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
Query strings use empty brackets for encoding arrays, which has
the widest range of support among server-side frameworks.
Fixes#901Fixes#939
May have something to do with #715
Problem with getQuery() in Navigation mixin
Query:
?history%255B0%255D%255B0%255D=pubfeed_id&history%255B0%255D%255B1%255D=1
Client-side:
{history: Array[1]}
Server-side:
{
'history%5B0%5D%5B0%5D': 'pubfeed_id',
'history%5B0%5D%5B1%5D': '1'
}
The text was updated successfully, but these errors were encountered: