From fa6ce585de8bc7eed3bcbaf6537129497ba55ce8 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 25 Mar 2023 15:43:24 -0500 Subject: [PATCH] correctly shows the DNS status Signed-off-by: Jeff Carr --- hostname.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hostname.go b/hostname.go index 1906079..afd8d0b 100644 --- a/hostname.go +++ b/hostname.go @@ -28,7 +28,9 @@ func getHostname() { if (me.fqdn != nil) { // s = me.fqdn.GetText() log("trying to update gui.Label") + me.fqdn.AddText(s) me.fqdn.SetText(s) + me.hostname = s } log("FQDN =", s) }