Procházet zdrojové kódy

FIX MISSING TEMPLATE DATA

tags/v1.0.0
Andrea Spacca před 5 roky
rodič
revize
64344fcf4d
1 změnil soubory, kde provedl 5 přidání a 3 odebrání
  1. +5
    -3
      server/handlers.go

+ 5
- 3
server/handlers.go Zobrazit soubor

@@ -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) {


Načítá se…
Zrušit
Uložit