From d95d294289117316ebc6e1142f8884e14b9453d1 Mon Sep 17 00:00:00 2001 From: FloppyDisk <97422942+flpydsk@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:30:38 +1300 Subject: [PATCH] remove custom: from hostname --- management/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/service.go b/management/service.go index dfee0aea..2c8daf9c 100644 --- a/management/service.go +++ b/management/service.go @@ -134,7 +134,7 @@ func (m *ManagementService) getHostDetails(w http.ResponseWriter, r *http.Reques func (m *ManagementService) getLabel() string { if m.label != "" { - return fmt.Sprintf("custom:%s", m.label) + return fmt.Sprintf("%s", m.label) } // If no label is provided we return the system hostname. This is not