diff --git a/src/Commands/Fetch.cs b/src/Commands/Fetch.cs index 903c5372..56adc6a1 100644 --- a/src/Commands/Fetch.cs +++ b/src/Commands/Fetch.cs @@ -60,6 +60,8 @@ namespace SourceGit.Commands { public AutoFetch(string repo) { cmd = new Fetch(repo, "--all", true, null); + cmd.DontRaiseError = true; + nextFetchPoint = DateTime.Now.AddMinutes(10).ToFileTime(); timer = new Timer(OnTick, null, 60000, 10000); }