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 d00d8f7608b3c9478746c6a8d4df089dd4bfe00d
parent dc1bdab948dc0c48e48d9244a49a75ae370fe7db
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat,  2 Jun 2018 10:53:32 +0200

Fix params struct

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

diff --git a/wsListener/server.go b/wsListener/server.go @@ -25,7 +25,7 @@ func DFHandler(w http.ResponseWriter, r *http.Request) { type params struct { Artist string `json:"music-artist"` Room string `json:"room"` - Genre int `json:"MusikGenre"` + Genre string `json:"MusikGenre"` } var p params