mirror of https://github.com/Xhofe/alist
fix: missed progress in upload task
parent
7dbef7d559
commit
e700ce15e5
|
@ -36,7 +36,7 @@ func putAsTask(dstDirPath string, file *model.FileStream) error {
|
||||||
UploadTaskManager.Submit(task.WithCancelCtx(&task.Task[uint64]{
|
UploadTaskManager.Submit(task.WithCancelCtx(&task.Task[uint64]{
|
||||||
Name: fmt.Sprintf("upload %s to [%s](%s)", file.GetName(), storage.GetStorage().MountPath, dstDirActualPath),
|
Name: fmt.Sprintf("upload %s to [%s](%s)", file.GetName(), storage.GetStorage().MountPath, dstDirActualPath),
|
||||||
Func: func(task *task.Task[uint64]) error {
|
Func: func(task *task.Task[uint64]) error {
|
||||||
return op.Put(task.Ctx, storage, dstDirActualPath, file, nil, true)
|
return op.Put(task.Ctx, storage, dstDirActualPath, file, task.SetProgress, true)
|
||||||
},
|
},
|
||||||
}))
|
}))
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue