From 13d3388950ac61e726ffc9403bc83b70fe770b07 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 3 Aug 2022 13:22:26 +0300 Subject: [PATCH] minor fix... Signed-off-by: Alex A. Naanou --- store/pouchdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/pouchdb.js b/store/pouchdb.js index b5e801c..a06da26 100755 --- a/store/pouchdb.js +++ b/store/pouchdb.js @@ -34,7 +34,7 @@ module.PouchDBStore = { if(!this.__data){ var PouchDB = module.PouchDB = - require('PouchDB') + require('pouchdb') return (this.__data = new PouchDB(this.__path__)) } return this.__data }, set data(value){