This commit is contained in:
Jacob Henry 2019-03-03 00:11:24 -05:00
parent 3e0415824d
commit 3687152848
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class ClientWrapper(object):
if request.can_read_body:
# Get the payload
post_params = await request.post()
payload = post_params["payload"]
payload = json.loads(post_params["payload"])
print("Interaction received: {}".format(payload))
# Handle each action separately