diff --git a/vetting_bot/bot_commands.py b/vetting_bot/bot_commands.py index e9b34f7..1f3c211 100644 --- a/vetting_bot/bot_commands.py +++ b/vetting_bot/bot_commands.py @@ -288,6 +288,7 @@ class Command: self.room.room_id, message_type="org.matrix.msc3381.poll.start", content=event_content, + ignore_unverified_devices=True, ) if isinstance(poll_resp, RoomSendError): @@ -322,6 +323,7 @@ class Command: self.room.room_id, message_type="m.room.message", content=msg_content, + ignore_unverified_devices=True, ) if isinstance(msg_resp, RoomSendError): diff --git a/vetting_bot/timer.py b/vetting_bot/timer.py index 3374bb8..be9c283 100644 --- a/vetting_bot/timer.py +++ b/vetting_bot/timer.py @@ -68,6 +68,7 @@ class Timer: self.config.vetting_room_id, message_type="org.matrix.msc3381.poll.end", content=event_content, + ignore_unverified_devices=True, ) if isinstance(poll_resp, RoomSendError):