Browse Source

fix on pagination

pull/664/head
Chris Lu 7 years ago
parent
commit
c7a71d35b0
  1. 4
      weed/server/filer_server_handlers_read.go

4
weed/server/filer_server_handlers_read.go

@ -44,6 +44,10 @@ func (fs *FilerServer) listDirectoryHandler(w http.ResponseWriter, r *http.Reque
path = "" path = ""
} }
if len(entries) > 0 {
lastFileName = entries[len(entries)-1].Name()
}
args := struct { args := struct {
Path string Path string
Entries interface{} Entries interface{}

Loading…
Cancel
Save