From 0fba356bbf7796572243d7bb2f381cfbe52e0956 Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Fri, 15 Sep 2017 21:59:52 +0200
Subject: [PATCH] Increase delta to check for user directories to two minutes.

References issue #10
---
 AutoTx/AutoTx.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/AutoTx/AutoTx.cs b/AutoTx/AutoTx.cs
index 7bdbfd5..7bab749 100644
--- a/AutoTx/AutoTx.cs
+++ b/AutoTx/AutoTx.cs
@@ -418,7 +418,7 @@ namespace AutoTx
             UpdateServiceState();
 
             var delta = DateTime.Now - _lastUserDirCheck;
-            if (delta.Seconds >= 10)
+            if (delta.Seconds >= 120)
                 CreateIncomingDirectories();
 
             // tasks depending on the service state:
-- 
GitLab