Make "requester" parameter optional

This commit is contained in:
s3lph 2022-01-17 01:05:45 +01:00
parent b79a6b9494
commit 8bbac829cc
No known key found for this signature in database
GPG key ID: 8AC98A811E5BEFF5
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
maubot: 0.18.0
id: me.s3lph.spaceapi
version: 0.1.0
version: 0.1.1
license: MIT
modules:
- spaceapi

View file

@ -89,7 +89,7 @@ class SpaceapiBot(Plugin):
changed = (now['state']['open'] != previous['state']['open'])
return now, changed
async def send_spaceapi_update(self, state: object, requester: MessageEvent) -> None:
async def send_spaceapi_update(self, state: object, requester: MessageEvent = None) -> None:
if requester:
room = requester.room_id
else: