correctly shows the DNS status

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2023-03-25 15:43:24 -05:00
parent c314dab9ed
commit fa6ce585de
1 changed files with 2 additions and 0 deletions

View File

@ -28,7 +28,9 @@ func getHostname() {
if (me.fqdn != nil) { if (me.fqdn != nil) {
// s = me.fqdn.GetText() // s = me.fqdn.GetText()
log("trying to update gui.Label") log("trying to update gui.Label")
me.fqdn.AddText(s)
me.fqdn.SetText(s) me.fqdn.SetText(s)
me.hostname = s
} }
log("FQDN =", s) log("FQDN =", s)
} }