mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 12:35:58 +00:00
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:
parent
dc1383971c
commit
d0b0515520
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user