diff options
author | anekos | 2011-06-11 17:01:37 -0700 |
---|---|---|
committer | anekos | 2011-06-11 17:01:37 -0700 |
commit | 1c4018261793e95c5e4ad4967847fdb9b7e6c9d1 (patch) | |
tree | 58f45e0a8cd96eb2889230de7b617af5e7dd3b44 /_libly.js | |
parent | 10158d82828f4c90d1d416c51cccff81a68a7151 (diff) | |
parent | 0bababc66bac46a14408cb60e7262bdcb8703005 (diff) | |
download | vimperator-plugins-1c4018261793e95c5e4ad4967847fdb9b7e6c9d1.tar.bz2 |
Merge pull request #13 from lyricallogical/fix_for_eaa063f66dbb
fix for eaa063f66dbb
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()) { |