1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2024-10-27 18:34:01 +00:00

add sync_read option

This commit is contained in:
Tibor Veres 2022-02-07 01:46:22 +01:00
parent 21658b5ebb
commit 2235a8ed60

View File

@ -190,6 +190,7 @@ class Fuse extends Nanoresource {
if (this.opts.attrTimeout) options.push('attr_timeout=' + this.opts.attrTimeout) if (this.opts.attrTimeout) options.push('attr_timeout=' + this.opts.attrTimeout)
if (this.opts.acAttrTimeout) options.push('ac_attr_timeout=' + this.opts.acAttrTimeout) if (this.opts.acAttrTimeout) options.push('ac_attr_timeout=' + this.opts.acAttrTimeout)
if (this.opts.noforget) options.push('noforget') if (this.opts.noforget) options.push('noforget')
if (this.opts.syncRead) options.push('sync_read')
if (this.opts.remember) options.push('remember=' + this.opts.remember) if (this.opts.remember) options.push('remember=' + this.opts.remember)
if (this.opts.modules) options.push('modules=' + this.opts.modules) if (this.opts.modules) options.push('modules=' + this.opts.modules)