Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions servc/svc/com/http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def _postMessage(self):
if key not in body:
return f"missing key {key}", StatusCode.INVALID_INPUTS.value

id = self._bus.emitEvent(body["event"], body["details"])
return id
self._bus.emitEvent(body["event"], body["details"])
return body
elif body["type"] == InputType.INPUT.value:
must_have_keys = ["route", "argument"]
for key in must_have_keys:
Expand Down
Loading