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
Родитель dc1383971c
Коммит d0b0515520
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);
}