From 972a6cec1c8bc4918589e32bee6631c27b744a86 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 2 May 2026 19:04:33 -0300 Subject: [PATCH] appview/config: fix APPVIEW_NAME var The nix module var and go struct env tag don't match. This updates the config struct since it seems to have been the inconsistent one. Signed-off-by: Kevin --- appview/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appview/config/config.go b/appview/config/config.go index 10ebd6fe..d8a533e8 100644 --- a/appview/config/config.go +++ b/appview/config/config.go @@ -15,7 +15,7 @@ type CoreConfig struct { DbPath string `env:"DB_PATH, default=appview.db"` ListenAddr string `env:"LISTEN_ADDR, default=0.0.0.0:3000"` AppviewHost string `env:"APPVIEW_HOST, default=tangled.org"` - AppviewName string `env:"APPVIEW_Name, default=Tangled"` + AppviewName string `env:"APPVIEW_NAME, default=Tangled"` Dev bool `env:"DEV, default=false"` DisallowedNicknamesFile string `env:"DISALLOWED_NICKNAMES_FILE"` -- 2.51.2