Skip to content

Commit

Permalink
fix(deeplinks): URI decode links
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Louvigny committed Dec 4, 2018
1 parent 931e8cf commit 8def589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/react-native/common/helpers/url.js
Expand Up @@ -3,7 +3,7 @@ const splitKeyValue = input => {
return {}
}

return input.substring(1).split('&')
return decodeURIComponent(input.substring(1)).split('&')
.map(part => part.split('='))
.reduce((acc, [key, value]) => ({
...acc,
Expand Down

0 comments on commit 8def589

Please sign in to comment.