From 5282a22879b3cc72642f3b6a2f782bc9e2fa32c6 Mon Sep 17 00:00:00 2001 From: Pieter Hollander Date: Thu, 25 Jul 2024 19:21:04 +0200 Subject: [PATCH] Fix: change Config.TimescaleDBEnabled to bool. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5a58c20..66ff871 100644 --- a/main.go +++ b/main.go @@ -147,7 +147,7 @@ type InverterSettingsData struct { type Config struct { DB string `json:"db"` OpenDTU string `json:"opendtu"` - TimescaleDBEnabled string `json:"timescaledb"` + TimescaleDBEnabled bool `json:"timescaledb"` TZ string `json:"tz"` }