Browse Source

Fixed text being Telegram instead of Signal

Maximilian Gaedig 2 years ago
parent
commit
10d0b9618b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mautrix_signal/commands/signal.py

+ 2 - 2
mautrix_signal/commands/signal.py

@@ -361,7 +361,7 @@ async def create(evt: CommandEvent) -> EventID:
 )
 async def get_id(evt: CommandEvent) -> EventID:
     if evt.portal:
-        await evt.reply(f"This room is bridged to Telegram chat ID `{evt.portal.chat_id}`.")
+        await evt.reply(f"This room is bridged to Signal chat ID `{evt.portal.chat_id}`.")
     await evt.reply("This is not a portal room.")
     
 
@@ -375,7 +375,7 @@ async def get_id(evt: CommandEvent) -> EventID:
 async def bridge(evt: CommandEvent) -> EventID:
     if len(evt.args) == 0:
         return await evt.reply(
-            "**Usage:** `$cmdprefix+sp bridge <Telegram chat ID> [Matrix room ID]`"
+            "**Usage:** `$cmdprefix+sp bridge <Signal chat ID> [Matrix room ID]`"
         )
     if evt.portal:
         return await evt.reply("This is already a portal room.")