Skip to content

Commit

Permalink
fix: ERROR: Radisk needs store.put interface (#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
aheissenberger committed Apr 15, 2024
1 parent 1c095b1 commit 03735dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rfs.js
Expand Up @@ -83,7 +83,7 @@ Gun.on('create', function(root){
this.to.next(root);
var opt = root.opt;
if(opt.rfs === false){ return }
opt.store = opt.store || (!Gun.window || opt.rfs === true && Store(opt));
opt.store = opt.store || ((!Gun.window || opt.rfs === true) && Store(opt));
});

module.exports = Store;

0 comments on commit 03735dc

Please sign in to comment.