Skip to content

Commit

Permalink
Fix typo: ignore_receipts is a status, not a callback
Browse files Browse the repository at this point in the history
  • Loading branch information
exquo committed Sep 22, 2021
1 parent d45bd83 commit c01dbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scli
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ class Daemon(AsyncProc):
timestamp_adj = int(output_lines[0].rsplit(':')[1])
logging.warning("send_message: some group members have uninstalled signal: %s", output_lines[2:])
# 2 lines for error explanation, rest are failed numbers
self.callbacks['ignore_receipts'](envelope, 'sent', timestamp_adj)
self.callbacks['sending_done'](envelope, 'ignore_receipts', timestamp_adj)
else:
self.callbacks['sending_done'](envelope, 'send_failed')
return
Expand Down

0 comments on commit c01dbf5

Please sign in to comment.