From 11ec58f6958c6b7dc2efdaed2ea9c50a70a4c648 Mon Sep 17 00:00:00 2001
From: Kai Reinhard <K.Reinhard@micromata.de>
Date: Sat, 17 Apr 2021 12:20:07 +0000
Subject: [PATCH] WIP

---
 borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/rest/SystemInfo.kt |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/rest/SystemInfo.kt b/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/rest/SystemInfo.kt
index d6a9d15..3b8e904 100644
--- a/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/rest/SystemInfo.kt
+++ b/borgbutler-server/src/main/kotlin/de/micromata/borgbutler/server/rest/SystemInfo.kt
@@ -11,7 +11,7 @@
 class SystemInfo {
     var queueStatistics: BorgQueueStatistics? = null
         private set
-    var isConfigurationOK = false
+    var configurationOK = false
         private set
     var borgVersion: BorgVersion? = null
         private set
@@ -22,7 +22,7 @@
     }
 
     fun setConfigurationOK(configurationOK: Boolean): SystemInfo {
-        isConfigurationOK = configurationOK
+        this.configurationOK = configurationOK
         return this
     }
 

--
Gitblit v1.10.0