From d91493b5876aeb644dab18b4c41b0ae56fb2f94b Mon Sep 17 00:00:00 2001 From: mjarkk Date: Sun, 25 Nov 2018 13:23:32 +0100 Subject: [PATCH] Forgot to set the git fetch timeout back to 60s --- pkg/gui/gui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/gui.go b/pkg/gui/gui.go index 52826c4d7..69343a95d 100644 --- a/pkg/gui/gui.go +++ b/pkg/gui/gui.go @@ -453,7 +453,7 @@ func (gui *Gui) Run() error { go func() { err := gui.fetch(g) if err == nil { - gui.goEvery(g, time.Second*10, gui.fetch) + gui.goEvery(g, time.Second*60, gui.fetch) } }() gui.goEvery(g, time.Second*10, gui.refreshFiles)