Skip to content

Commit 03735dc

Browse files
fix: ERROR: Radisk needs store.put interface (#1374)
1 parent 1c095b1 commit 03735dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/rfs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Gun.on('create', function(root){
8383
this.to.next(root);
8484
var opt = root.opt;
8585
if(opt.rfs === false){ return }
86-
opt.store = opt.store || (!Gun.window || opt.rfs === true && Store(opt));
86+
opt.store = opt.store || ((!Gun.window || opt.rfs === true) && Store(opt));
8787
});
8888

8989
module.exports = Store;

0 commit comments

Comments
 (0)