diff --git a/server/src/tellmesrv.py b/server/src/tellmesrv.py index b33636b..d5b1723 100644 --- a/server/src/tellmesrv.py +++ b/server/src/tellmesrv.py @@ -33,6 +33,7 @@ def sendmessage(target, message): ws.send(json_command) # Send message to WebSocket responsejson = ws.recv() # Receive response response = json.loads(responsejson) + print(response) chatitems = response['resp']['chatitems'] for chatitem in chatitems: print(chatitem)