From 43f1198b0cbcaec17ba6d049e50c8f2fd94eaa58 Mon Sep 17 00:00:00 2001 From: Steve Date: Thu, 20 Aug 2020 13:06:44 -0400 Subject: [PATCH] config fix --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index f7e9d77..1945289 100644 --- a/config.go +++ b/config.go @@ -18,9 +18,9 @@ type Config struct { func validateConfigEntry(entry string, name string) bool { if entry == "" { log.Printf("Error: %v unset", name) - return false + return true } - return true + return false } func LoadConfig() (*Config, error) {