Closed jmathai closed 8 years ago
The following line always returns false.
cloakedUrl = qs.parse(url.parse(cloakedUrl))
We need to parse the query attribute of the hash returned by url.parse.
query
url.parse
cloakedUrl = qs.parse(url.parse(cloakedUrl).query)
Hey! Can you submit a PR for this? Looks like you already fixed it in your fork.
Nevermind, just saw your PR!
Merged your PR. Thanks for the fix!
The following line always returns false.
We need to parse the
query
attribute of the hash returned byurl.parse
.