From 79dd1d02b49bc7a296e2eb607c29192709eeab06 Mon Sep 17 00:00:00 2001 From: spf13 Date: Tue, 27 May 2014 18:35:12 -0400 Subject: [PATCH] Fixing bug with Live Reload where it broadcast instead of sending the handshake --- livereload/connection.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/livereload/connection.go b/livereload/connection.go index 70a7e6d5d..c35a403ee 100644 --- a/livereload/connection.go +++ b/livereload/connection.go @@ -35,11 +35,11 @@ func (c *connection) reader() { } switch true { case bytes.Contains(message, []byte(`"command":"hello"`)): - wsHub.broadcast <- []byte(`{ - "command": "hello", - "protocols": [ "http://livereload.com/protocols/official-7" ], - "serverName": "Hugo" - }`) + c.send <- []byte(`{ + "command": "hello", + "protocols": [ "http://livereload.com/protocols/official-7" ], + "serverName": "Hugo" + }`) } } c.ws.Close()