Bug 107104: ``Throbber busted; js error since complexvalue, not string, returned'', patch by jrgm, r=jag.

This commit is contained in:
jaggernaut%netscape.com 2006-07-29 05:38:53 +00:00
Родитель 4a8533b91d
Коммит 582a205984
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -200,7 +200,7 @@ function goClickThrobber( urlPref )
try {
var pref = Components.classes["@mozilla.org/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
url = pref.getComplexValue(urlPref, Components.interfaces.nsIPrefLocalizedString);
url = pref.getComplexValue(urlPref, Components.interfaces.nsIPrefLocalizedString).data;
}
catch(e) {