This commit is contained in:
retoor 2025-08-21 11:50:02 +02:00
parent a7ce1059f1
commit edeaceba25

View File

@ -76,8 +76,8 @@ class Bot:
def has_joined(self, channel_uid):
return channel_uid in self.joined
async def send_message(self, channel_uid, message):
await self.rpc.send_message(channel_uid, message)
async def send_message(self, channel_uid, message,final=True):
await self.rpc.send_message(channel_uid, message,final)
return True
async def get_channel(self, channel_uid=None, refresh=False):