зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1070223: Ignore exceptions thrown from nsIBrowserSearchInitObserver. r=MattN
This commit is contained in:
Родитель
92cdf2fa86
Коммит
57dd686aab
|
@ -3871,10 +3871,14 @@ SearchService.prototype = {
|
|||
if (observer) {
|
||||
this._initObservers.promise.then(
|
||||
function onSuccess() {
|
||||
observer.onInitComplete(self._initRV);
|
||||
try {
|
||||
observer.onInitComplete(self._initRV);
|
||||
} catch (e) {
|
||||
Cu.reportError(e);
|
||||
}
|
||||
},
|
||||
function onError(aReason) {
|
||||
Components.utils.reportError("Internal error while initializing SearchService: " + aReason);
|
||||
Cu.reportError("Internal error while initializing SearchService: " + aReason);
|
||||
observer.onInitComplete(Components.results.NS_ERROR_UNEXPECTED);
|
||||
}
|
||||
);
|
||||
|
|
Загрузка…
Ссылка в новой задаче