0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-15 17:18:19 +02:00

Exempt bot users

This commit is contained in:
Half-Shot 2019-08-23 09:56:31 +01:00
parent ffa5b757c7
commit 9ba32f6573

View file

@ -469,7 +469,7 @@ class EventCreationHandler(object):
u = yield self.store.get_user_by_id(user_id)
assert u is not None
if u["user_type"] == UserTypes.SUPPORT:
if u["user_type"] == UserTypes.SUPPORT or u["user_type"] == UserTypes.BOT:
# support users are not required to consent
return
if u["appservice_id"] is not None: