feat(ftp-server): support resumable downloading (#7792)
This commit is contained in:
@ -63,7 +63,7 @@ func (f *FileUploadProxy) Write(p []byte) (n int, err error) {
|
||||
}
|
||||
|
||||
func (f *FileUploadProxy) Seek(offset int64, whence int) (int64, error) {
|
||||
return 0, errs.NotSupport
|
||||
return f.buffer.Seek(offset, whence)
|
||||
}
|
||||
|
||||
func (f *FileUploadProxy) Close() error {
|
||||
|
Reference in New Issue
Block a user