From 34924a7200ba4c82cd7507a6ca45ffb1404b5a02 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 11 May 2010 00:22:56 +0100 Subject: [PATCH] increase fetch interval --- SparkleShare/SparkleRepo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/SparkleRepo.cs b/SparkleShare/SparkleRepo.cs index b0becccb..8a3bcca9 100644 --- a/SparkleShare/SparkleRepo.cs +++ b/SparkleShare/SparkleRepo.cs @@ -103,7 +103,7 @@ namespace SparkleShare { // Fetch remote changes every 20 seconds FetchTimer = new Timer (); - FetchTimer.Interval = 10000; + FetchTimer.Interval = 17500; FetchTimer.Elapsed += delegate { Fetch (); };