Merge branch 'join-on-invite-patch' into dylhack-master

This commit is contained in:
Dylan Hackworth 2021-01-23 13:29:47 -06:00
commit a3692d2646
No known key found for this signature in database
GPG Key ID: 831CED48C43CA48E
1 changed files with 1 additions and 1 deletions

2
bot.py
View File

@ -389,7 +389,7 @@ class Bot:
if matrix_server and self.matrix_user and bot_owners and access_token:
self.client = AsyncClient(matrix_server, self.matrix_user, ssl = matrix_server.startswith("https://"))
self.client.access_token = access_token
self.join_on_invite = join_on_invite is not None
self.join_on_invite = (join_on_invite or '').lower() == 'true'
self.owners = bot_owners.split(',')
self.owners_only = owners_only
self.get_modules()