From 600112780cf7c6ea7a657799f43a7b433cd3c211 Mon Sep 17 00:00:00 2001 From: matejcik Date: Tue, 6 Aug 2019 14:47:24 +0200 Subject: [PATCH] use git.autoFetch config option --- 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 1278411de..20c247fa1 100644 --- a/pkg/gui/gui.go +++ b/pkg/gui/gui.go @@ -660,7 +660,7 @@ func (gui *Gui) Run() error { gui.waitForIntro.Add(1) } - if gui.Config.GetUserConfig().GetBool("gui.git.autoFetch") { + if gui.Config.GetUserConfig().GetBool("git.autoFetch") { go gui.startBackgroundFetch() } gui.goEvery(time.Second*10, gui.refreshFiles)