Browse Source

FIX MISSING TEMPLATE DATA

tags/v1.0.0
Andrea Spacca 5 years ago
parent
commit
64344fcf4d
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      server/handlers.go

+ 5
- 3
server/handlers.go View File

@@ -204,13 +204,15 @@ func (s *Server) viewHandler(w http.ResponseWriter, r *http.Request) {
webAddress := resolveWebAddress(r)

data := struct {
Hostname string
WebAddress string
GAKey string
Hostname string
WebAddress string
GAKey string
UserVoiceKey string
}{
hostname,
webAddress,
s.gaKey,
s.userVoiceKey,
}

if acceptsHTML(r.Header) {


Loading…
Cancel
Save