aboutsummaryrefslogtreecommitdiff
path: root/hotline/client.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2021-08-04 17:46:03 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2021-08-04 16:46:03 -0700
commite005c191842ccab0e9600a2221616f434ad0afc7 (patch)
treec67ea836aa817cebb746821828b46e30429ceef9 /hotline/client.go
parent40afb444ff58289700baa1eb07f3f92d4731436d (diff)
Add server name to serverUI
Diffstat (limited to 'hotline/client.go')
-rw-r--r--hotline/client.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/hotline/client.go b/hotline/client.go
index 076cdba..84126d3 100644
--- a/hotline/client.go
+++ b/hotline/client.go
@@ -21,7 +21,7 @@ import (
const (
trackerListPage = "trackerList"
- serverUIPage = "serverUI"
+ serverUIPage = "serverUI"
)
//go:embed banners/*.txt
@@ -82,6 +82,7 @@ type Client struct {
UserList []User
Logger *zap.SugaredLogger
activeTasks map[uint32]*Transaction
+ serverName string
pref *ClientPrefs