mirror of
https://github.com/wah-su/stickerbridge.git
synced 2025-04-05 15:54:41 +00:00
Do not respond to m.notice
This commit is contained in:
parent
e875da34f6
commit
9286dfef3a
1 changed files with 4 additions and 0 deletions
|
@ -25,6 +25,10 @@ class Callbacks:
|
|||
if event.sender == self.client.user:
|
||||
return
|
||||
|
||||
# Do not respond to m.notice (https://spec.matrix.org/v1.3/client-server-api/#mnotice)
|
||||
if event.source['content']['msgtype'] == 'm.notice':
|
||||
return
|
||||
|
||||
if event.body.startswith(self.command_prefix) or room.member_count <= 2:
|
||||
command_string = event.body.replace(self.command_prefix, '').strip()
|
||||
command = Command(self.client, room, command_string, self.tg_exporter)
|
||||
|
|
Loading…
Add table
Reference in a new issue