ailistener-old

The central Server which transports webhook events from the Dialogflow bot to the local nodes
git clone git://archive.git.mtrnord.blog/OpenHomeAuto/ailistener-old.git
Log | Files | Refs | README | LICENSE

commit 79e817749c13e10f4700a19ec448000ecf539b60
parent dbda11878b9175b2d6460c3e7d323f7cff9c2ad9
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat,  2 Jun 2018 16:11:46 +0200

Fix default response

Diffstat:
MwsListener/server.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wsListener/server.go b/wsListener/server.go @@ -67,7 +67,7 @@ func DFHandler(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusOK) w.Write(latin1resp) default: - w.WriteHeader(http.StatusOK) + w.WriteHeader(http.StatusNotImplemented) } }