Bug 883770 - [Dialer][SMS][Contacts] Call log does no longer show contact names after version upgrade. Followup. r=reuben.

This commit is contained in:
Gregor Wagner 2013-07-02 11:24:16 +08:00
parent b4e3f020c1
commit 263220df7e

View File

@ -336,7 +336,9 @@ ContactDB.prototype = {
if (!objectStore) {
objectStore = aTransaction.objectStore(STORE_NAME);
}
objectStore.createIndex("telMatch", "search.parsedTel", {multiEntry: true});
if (!objectStore.indexNames.contains("telMatch")) {
objectStore.createIndex("telMatch", "search.parsedTel", {multiEntry: true});
}
objectStore.openCursor().onsuccess = function(event) {
let cursor = event.target.result;
if (cursor) {