From 4e583e39c3c3ddeaaa5d7e68810f7589fcc63961 Mon Sep 17 00:00:00 2001 From: SG Date: Thu, 11 May 2023 20:04:45 +0200 Subject: [PATCH] Change default server URL --- transmat/transmat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmat/transmat.py b/transmat/transmat.py index 41f4bc8..14cae11 100755 --- a/transmat/transmat.py +++ b/transmat/transmat.py @@ -95,7 +95,7 @@ async def send_encrypted_msg(ws, k, data): async def main(): - WS_RELAY_SERVER = "wss://transmat.exocortex.ru" + WS_RELAY_SERVER = "wss://transmat.exocortex.ru/ws" parser = argparse.ArgumentParser() arg_group = parser.add_mutually_exclusive_group(required=True) arg_group.add_argument('--receive', '--recv', action='store_true', help='Receive a file from the remote party (mutually exclusive with --send and --relay)')