diff options
author | lyrical_logical | 2011-05-29 17:50:01 +0900 |
---|---|---|
committer | lyrical_logical | 2011-05-29 17:50:01 +0900 |
commit | 0bababc66bac46a14408cb60e7262bdcb8703005 (patch) | |
tree | 0743bcf06633af74a36f8e646901b42c3fd99e2d /_libly.js | |
parent | 30da375c3b825ee6d5b8ebd74247bd44cda1688f (diff) | |
download | vimperator-plugins-0bababc66bac46a14408cb60e7262bdcb8703005.tar.bz2 |
fix for eaa063f66dbb
see http://code.google.com/p/vimperator-labs/source/diff?spec=svneaa063f66dbb3bc0d074b290fb79e273e2003fde&r=eaa063f66dbb3bc0d074b290fb79e273e2003fde&format=side&path=/common/modules/storage.jsm
Diffstat (limited to '_libly.js')
-rw-r--r-- | _libly.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -682,7 +682,7 @@ libly.Wedata.prototype = { var logger = this.logger; var STORE_KEY = 'plugins-libly-wedata-' + this.dbname + '-items'; - var store = storage.newMap(STORE_KEY, true); + var store = storage.newMap(STORE_KEY, {store: true}); var cache = store && store.get('data'); if (store && cache && new Date(store.get('expire')) > new Date()) { |