diff --git a/stickerbridge/bot_commands.py b/stickerbridge/bot_commands.py index 32e4ebd..89b5617 100644 --- a/stickerbridge/bot_commands.py +++ b/stickerbridge/bot_commands.py @@ -46,8 +46,8 @@ class Command: switch = { MatrixReuploader.STATUS_DOWNLOADING: f'Downloading stickerpack {pack_name}...', MatrixReuploader.STATUS_UPLOADING: f'Uploading stickerpack {pack_name}...', - MatrixReuploader.STATUS_UPDATING_ROOM_STATE: f'Uploading stickerpack {pack_name}...', - MatrixReuploader.STATUS_OK: 'Done 😄', + MatrixReuploader.STATUS_UPDATING_ROOM_STATE: f'Updating room state...', + MatrixReuploader.STATUS_OK: 'Done', MatrixReuploader.STATUS_NO_PERMISSION: ( 'I do not have permissions to create any stickerpack in this room\n' 'Please, give me mod 🙏' diff --git a/stickerbridge/chat_functions.py b/stickerbridge/chat_functions.py index 7542b75..dda9b22 100644 --- a/stickerbridge/chat_functions.py +++ b/stickerbridge/chat_functions.py @@ -11,7 +11,7 @@ from sticker_types import MatrixStickerset async def send_text_to_room(client: AsyncClient, room_id: str, message: str): content = { - "msgtype": "m.text", + "msgtype": "m.notice", "body": message, } return await client.room_send(