Fix: change Config.TimescaleDBEnabled to bool.
Some checks failed
Build Docker image / build (push) Failing after 1m0s
Build Golang packages / release (push) Has been skipped

This commit is contained in:
Pieter Hollander 2024-07-25 19:21:04 +02:00
parent 6230869120
commit 5282a22879
Signed by: pieter
SSH key fingerprint: SHA256:HbX+9cBXsop9SuvL+mELd29sK+7DehFfdVweFVDtMSg

View file

@ -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"`
}