diff --git a/cmd/syncthing/gui.go b/cmd/syncthing/gui.go index e0afc7d3d..5f7c89e02 100644 --- a/cmd/syncthing/gui.go +++ b/cmd/syncthing/gui.go @@ -255,7 +255,7 @@ func restGetNeed(m *model.Model, w http.ResponseWriter, r *http.Request) { var qs = r.URL.Query() var repo = qs.Get("repo") - files := m.NeedFilesRepoLimited(repo, 100, 250) // max 100 files or 2500 blocks + files := m.NeedFilesRepoLimited(repo, 100, 2500) // max 100 files or 2500 blocks w.Header().Set("Content-Type", "application/json; charset=utf-8") json.NewEncoder(w).Encode(files)