From 5638c4ba87c82fa6531833337f60256c4c8a0000 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Sat, 13 Sep 2014 15:11:47 +0200 Subject: [PATCH] Woops (fixup of previous) --- cmd/syncthing/gui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)