From 7c56adba62fcd77adccb21ea17bbfbb542d65497 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 27 Apr 2010 23:37:09 +0100 Subject: [PATCH] interval to 30s again --- src/SparklePony.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SparklePony.cs b/src/SparklePony.cs index c44e210f..320ddd54 100644 --- a/src/SparklePony.cs +++ b/src/SparklePony.cs @@ -169,7 +169,7 @@ public class AutoFetcher : Timer { public AutoFetcher (Repository [] Repositories) : base () { // Fetch changes every 30 seconds - Interval = 5000; + Interval = 30000; Elapsed += delegate (object o, ElapsedEventArgs args) { foreach (Repository Repository in Repositories) { Stop ();