Skip to content

Commit

Permalink
Merge pull request #56 from dimagi/ce/incoming-message-handling
Browse files Browse the repository at this point in the history
fix syntax error
  • Loading branch information
calellowitz authored Nov 22, 2024
2 parents 53dab9e + 88f6708 commit 1c14870
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions messaging/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ def post(self, request, *args, **kwargs):
break

message_data = {
"message_id": message["message_id"]
"content": message["content"]
"message_id": message["message_id"],
"content": message["content"],
"channel_id": message["channel_id"]
}
messages.append(Message(**message_data))
Expand Down

0 comments on commit 1c14870

Please sign in to comment.