From fa3cc86fed288e937d21220c6fb92313a4306dec Mon Sep 17 00:00:00 2001 From: MickaelK Date: Thu, 28 Aug 2025 12:21:05 +1000 Subject: [PATCH] chore (maintenance): license info --- server/plugin/plg_license/index.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/plugin/plg_license/index.go b/server/plugin/plg_license/index.go index 85f2f02d..daed4e70 100644 --- a/server/plugin/plg_license/index.go +++ b/server/plugin/plg_license/index.go @@ -47,7 +47,11 @@ func init() { os.Exit(1) return } - LICENSE = lic.Name + suffix := LICENSE + if suffix == "agpl" { + suffix = "base" + } + LICENSE = lic.Name + "::" + suffix Log.Info("You are running Filestash \"%s\"", LICENSE) }) }