From 5bba5959f73c446a4564955c97eed23ee9c5bc5c Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Mon, 3 Mar 2025 13:23:44 -0800 Subject: [PATCH] Attempt to fix keyboard placement, wait for connection --- src/app.html | 4 +++- src/app/commands.ts | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app.html b/src/app.html index 4813665..59f1871 100644 --- a/src/app.html +++ b/src/app.html @@ -2,7 +2,9 @@ - + diff --git a/src/app/commands.ts b/src/app/commands.ts index 7350952..97c877d 100644 --- a/src/app/commands.ts +++ b/src/app/commands.ts @@ -331,6 +331,7 @@ export const checkRelayConnection = async (url: string) => { const connection = ctx.net.pool.get(url) await connection.socket.open() + await connection.socket.wait(3000) if (connection.socket.status !== SocketStatus.Open) { return `Failed to connect`