Skip to content

Commit 0177177

Browse files
committed
fix(crypt): pass refresh list request (close #609)
1 parent a77e515 commit 0177177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/crypt/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func (d *Crypt) List(ctx context.Context, dir model.Obj, args model.ListArgs) ([
110110
//return d.list(ctx, d.RemotePath, path)
111111
//remoteFull
112112

113-
objs, err := fs.List(ctx, d.getPathForRemote(path, true), &fs.ListArgs{NoLog: true})
113+
objs, err := fs.List(ctx, d.getPathForRemote(path, true), &fs.ListArgs{NoLog: true, Refresh: args.Refresh})
114114
// the obj must implement the model.SetPath interface
115115
// return objs, err
116116
if err != nil {

0 commit comments

Comments
 (0)