From 4f717c526304a09156f6ba86c12736e47ad9f453 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 1 Oct 2008 13:31:57 +0000 Subject: [PATCH] Fix another typo in storage.jsm --- modules/storage.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/storage.jsm b/modules/storage.jsm index 0ac3f840..3b352646 100644 --- a/modules/storage.jsm +++ b/modules/storage.jsm @@ -117,7 +117,7 @@ ObjectStore.prototype = prototype; function ArrayStore(name, store) { - var array = loadPref(name, store, Array) || {}; + var array = loadPref(name, store, Array) || []; this.__defineGetter__("store", function () store); this.__defineGetter__("name", function () name);