Don't chop off the last character of the URL for remote commands with a comma. b=298960 r=bsmedberg

This commit is contained in:
dbaron@dbaron.org
2005-12-13 17:21:12 +00:00
parent 4cf4471695
commit 3cb3e0734e

View File

@@ -252,7 +252,7 @@ var nsBrowserContentHandler = {
if (sepIndex == -1)
remoteParams[0] = a[2];
else {
remoteParams[0] = a[2].substring(0, sepIndex - 1);
remoteParams[0] = a[2].substring(0, sepIndex);
remoteParams[1] = a[2].substring(sepIndex + 1);
}