Bug 913713 - Part 1: Use optString to get search engine identifier. r=rnewman

This commit is contained in:
Michael Comella 2013-09-11 14:28:07 -07:00
Родитель 3da9f94774
Коммит 763eefa4a7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -689,7 +689,7 @@ public class BrowserHealthRecorder implements GeckoEventListener {
Log.d(LOG_TAG, "Ignoring search without location.");
return;
}
recordSearch(message.getString("identifier"), message.getString("location"));
recordSearch(message.optString("identifier", null), message.getString("location"));
return;
}
} catch (Exception e) {