Bug 769785 - Settings API breaks due to IndexedDB Prefix change; r=khuey

This commit is contained in:
Kyle Machulis 2012-06-29 13:53:41 -07:00
Родитель a95bd67fe9
Коммит fc5a5e47a2
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -85,8 +85,8 @@ SettingsLock.prototype = {
}
break;
case "get":
req = (info.name === "*") ? store.getAll()
: store.getAll(info.name);
req = (info.name === "*") ? store.mozGetAll()
: store.mozGetAll(info.name);
req.onsuccess = function(event) {
debug("Request for '" + info.name + "' successful. " +