Commit f7799abd authored by 神楽坂玲奈's avatar 神楽坂玲奈

fix

parent 2829325a
...@@ -12,7 +12,8 @@ ...@@ -12,7 +12,8 @@
result = "M#" result = "M#"
else else
result = "" result = ""
result += encodeURIComponent(name) result += name
result = encodeURIComponent(result)
if password if password
result += '$' + encodeURIComponent(password) result += '$' + encodeURIComponent(password)
result result
......
...@@ -36,7 +36,8 @@ ...@@ -36,7 +36,8 @@
} else { } else {
result = ""; result = "";
} }
result += encodeURIComponent(name); result += name;
result = encodeURIComponent(result);
if (password) { if (password) {
result += '$' + encodeURIComponent(password); result += '$' + encodeURIComponent(password);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment