Bug 1014924 - [B2G][Tarako][Geolocation] WifiWorker scan fails With wifi off, and geolocation stops. r=chulee

This commit is contained in:
Vincent Chang 2014-06-04 18:08:51 +08:00
Родитель 58d3d3466b
Коммит 8e37d77e92
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -2778,6 +2778,11 @@ WifiWorker.prototype = {
var timer = null;
var self = this;
if (!WifiManager.enabled) {
callback.onfailure();
return;
}
self.waitForScan(waitForScanCallback);
doScan();
function doScan() {