From 2ee9a09aa2730fd829271ec8f803b40ea9b6132e Mon Sep 17 00:00:00 2001 From: null31 Date: Tue, 24 Sep 2024 23:13:13 +0200 Subject: [PATCH] Rename GeoIP database options to match the correct files --- utils/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/config.go b/utils/config.go index 8c95db3..6e07c6c 100644 --- a/utils/config.go +++ b/utils/config.go @@ -12,8 +12,8 @@ type Config struct { SSL bool `json:"ssl"` Nickname string `json:"nickname"` Channels []string `json:"channels"` - GeoIPDatabase string `json:"geoip_database"` - GeoIPASN string `json:"geoip_asn"` + GeoIP_City string `json:"geoip_city"` + GeoIP_ASN string `json:"geoip_asn"` Callback bool `json:"callback"` Debug bool `json:"debug"` }