summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authormjarkk <mkopenga@gmail.com>2018-11-25 13:23:32 +0100
committermjarkk <mkopenga@gmail.com>2018-11-25 13:23:32 +0100
commitd91493b5876aeb644dab18b4c41b0ae56fb2f94b (patch)
tree6bf8d0e990cb48c3e2acc9374db8be13bee0c224 /pkg
parent9da1382e09c2e3c43c8e979e26d7614c139d12dd (diff)
Forgot to set the git fetch timeout back to 60s
Diffstat (limited to 'pkg')
-rw-r--r--pkg/gui/gui.go2
1 files changed, 1 insertions, 1 deletions
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)