This commit is contained in:
Chris Lu 2021-05-06 03:37:51 -07:00
parent 5753749c90
commit 55a8f57381
6 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,6 @@ func StreamContent(masterClient wdclient.HasLookupFileIdFunction, w io.Writer, c
fileId2Url[chunkView.FileId] = urlStrings fileId2Url[chunkView.FileId] = urlStrings
} }
for _, chunkView := range chunkViews { for _, chunkView := range chunkViews {
urlStrings := fileId2Url[chunkView.FileId] urlStrings := fileId2Url[chunkView.FileId]

View file

@ -270,6 +270,7 @@ func (wfs *WFS) LookupFn() wdclient.LookupFileIdFunctionType {
} }
type NodeWithId uint64 type NodeWithId uint64
func (n NodeWithId) Id() uint64 { func (n NodeWithId) Id() uint64 {
return uint64(n) return uint64(n)
} }