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

fix

parent 2829325a
......@@ -12,7 +12,8 @@
result = "M#"
else
result = ""
result += encodeURIComponent(name)
result += name
result = encodeURIComponent(result)
if password
result += '$' + encodeURIComponent(password)
result
......
......@@ -36,7 +36,8 @@
} else {
result = "";
}
result += encodeURIComponent(name);
result += name;
result = encodeURIComponent(result);
if (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