Skip to content

Commit

Permalink
HOTFIX: cancel 메세지 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
leehjhjhj committed Aug 13, 2023
1 parent 17c6ca4 commit 6f347e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion call/models/assign.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def websocket_message(instance: Assign, created: bool):
if created:
message_type = "waiting"
else:
if instance.status in ('success', 'riding', 'failed', 'finish'):
if instance.status in ('success', 'riding', 'failed', 'finish', 'cancel'):
message_type = instance.status
else:
message_type = "error"
Expand Down

0 comments on commit 6f347e8

Please sign in to comment.