From a165df46fa8a3266bb5dc0234f40e64db5df0c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=BCller?= Date: Mon, 27 May 2019 16:22:02 +0200 Subject: [PATCH] Fix Settings properties path --- Settings.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Settings.go b/Settings.go index 44b8d24..bb0a25d 100644 --- a/Settings.go +++ b/Settings.go @@ -18,9 +18,9 @@ const ( SettingsSaveHostname = SettingsInterface + ".SaveHostname" /* Properties */ - SettingsPropertyConnections = SettingsInterface + "Connections" // readable ao - SettingsPropertyHostname = SettingsInterface + "Hostname" // readable s - SettingsPropertyCanModify = SettingsInterface + "CanModify" // readable b + SettingsPropertyConnections = SettingsInterface + ".Connections" // readable ao + SettingsPropertyHostname = SettingsInterface + ".Hostname" // readable s + SettingsPropertyCanModify = SettingsInterface + ".CanModify" // readable b ) type Settings interface {