Skip to content

Commit c9431e8

Browse files
committed
Don't need to encode the hash?
1 parent 91281be commit c9431e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/configure.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class @Configure
6262

6363
# Encode the configuration data
6464
encode: (data) ->
65-
(encodeURIComponent(data[key]) for key in @constructor.variables).join("/")
65+
(data[key] for key in @constructor.variables).join("/")
6666

6767
# Decode the configuration data
6868
decode: (string) ->

0 commit comments

Comments
 (0)