Alan Shreve 12 years ago
parent
commit
7c1977c30f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/ngrok/client/views/web/http.go
  2. 1 1
      src/ngrok/server/tunnel.go

+ 1 - 1
src/ngrok/client/views/web/http.go

@@ -178,7 +178,7 @@ func (whv *WebHttpView) updateHttp() {
 					Body:       body,
 					Binary:     !utf8.Valid(rawReq),
 				},
-				Start: htxn.Start.Unix(),
+				Start:   htxn.Start.Unix(),
 				ConnCtx: htxn.ConnUserCtx.(mvc.ConnectionContext),
 			}
 

+ 1 - 1
src/ngrok/server/tunnel.go

@@ -259,7 +259,7 @@ func (t *Tunnel) HandlePublicConnection(publicConn conn.Conn) {
 
 		// tell the client we're going to start using this proxy connection
 		startPxyMsg := &msg.StartProxyMsg{
-			Url: t.url,
+			Url:        t.url,
 			ClientAddr: publicConn.RemoteAddr().String(),
 		}
 		if err = msg.WriteMsg(proxyConn, startPxyMsg); err != nil {