From 03668dcb10880017efd5a2b87cc488f541a119b2 Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Tue, 20 Feb 2018 18:38:11 +0100
Subject: [PATCH] Adapt tray app to config file location changes.

With this commit all required changes for having the configuration in
two separate files should be completed.

Fixes #18
---
 ATxTray/AutoTxTray.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ATxTray/AutoTxTray.cs b/ATxTray/AutoTxTray.cs
index 6fbc684..fe0b01f 100644
--- a/ATxTray/AutoTxTray.cs
+++ b/ATxTray/AutoTxTray.cs
@@ -91,7 +91,7 @@ namespace ATxTray
 
             Log.Trace("Trying to read service config and status files...");
             try {
-                _config = ServiceConfig.Deserialize(Path.Combine(baseDir, "configuration.xml"));
+                _config = ServiceConfig.Deserialize(Path.Combine(baseDir, "conf"));
                 UpdateStatusInformation();
                 SetupContextMenu();
             }
-- 
GitLab