From bca172eff19ceeec92a245b4a56dbae32f3d0b90 Mon Sep 17 00:00:00 2001 From: Geno Date: Thu, 16 Sep 2021 03:13:16 +0200 Subject: [PATCH] distributor: fix config toml storage_path --- distributor/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributor/main.go b/distributor/main.go index 891e918..85fcc0c 100644 --- a/distributor/main.go +++ b/distributor/main.go @@ -15,7 +15,7 @@ import ( var dbus *distributor.DBus type configData struct { - StoragePath string `toml"storage_path"` + StoragePath string `toml:"storage_path"` XMPP XMPPService `toml:"xmpp"` }