Skip to content

Commit

Permalink
Fixed GET parameter deserialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
grindars committed Mar 17, 2014
1 parent 21279f1 commit 0f69f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/joosy/router.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ class Joosy.Router extends Joosy.Module
# Collect parameters from URL query section
for entry in query when entry.length > 0
[key, value] = entry.split '='
params[key] = value
params[decodeURIComponent(key)] = decodeURIComponent(value)

params

Expand Down

0 comments on commit 0f69f5c

Please sign in to comment.