This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(common): handle arrays in querystrings
caching GET request with query string with array of parameter gets the first value only. it breaks caching for the same url with different query string for example for api http://api.example.com?params=1¶ms=2¶ms=3 cache key will be http://api.example.com?params=1 for api http://api.example.com?params=1¶ms=2 cache key will be the same http://api.example.com?params=1 and therefor API request will not be sent to server.
- Loading branch information