Bug 842147 - Translate JS exception from CaptivePortalDetector into informative debug message. r=vchang

This commit is contained in:
Shih-Chiang Chien 2013-03-05 09:56:34 -05:00
Родитель 4766e33cac
Коммит 3a831e50dd
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -868,8 +868,12 @@ let CaptivePortalDetectionHelper = (function() {
capService.abort(_ongoingInterface);
_ongoingInterface = null;
}
capService.checkCaptivePortal(interfaceName, capCallback);
_ongoingInterface = interfaceName;
try {
capService.checkCaptivePortal(interfaceName, capCallback);
_ongoingInterface = interfaceName;
} catch (e) {
debug('Fail to detect captive portal due to: ' + e.message);
}
};
let _abort = function (interfaceName) {