diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-10-16 23:34:27 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-10-16 23:34:27 -0700 |
| commit | e7d1f183ccf30a705ce36678d1abc91a95e969be (patch) | |
| tree | 3d1b8d785d52acbc65a2b71da3b2573178eb3457 /weed | |
| parent | fc1694b32178e1329f643849910829a7a7b7445a (diff) | |
| download | seaweedfs-e7d1f183ccf30a705ce36678d1abc91a95e969be.tar.xz seaweedfs-e7d1f183ccf30a705ce36678d1abc91a95e969be.zip | |
ensure file id is populated
Diffstat (limited to 'weed')
| -rw-r--r-- | weed/filer/filechunks_read.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer/filechunks_read.go b/weed/filer/filechunks_read.go index b39f6a35c..742f050be 100644 --- a/weed/filer/filechunks_read.go +++ b/weed/filer/filechunks_read.go @@ -100,7 +100,7 @@ func addToVisibles(visibles []VisibleInterval, prevX int64, startPoint *Point, p visibles = append(visibles, VisibleInterval{ start: prevX, stop: point.x, - fileId: chunk.FileId, + fileId: chunk.GetFileIdString(), modifiedTime: chunk.Mtime, chunkOffset: prevX - chunk.Offset, chunkSize: chunk.Size, |
