From 28ac5e1237104b2ecb329de6846edc8f0ded7280 Mon Sep 17 00:00:00 2001 From: Justin van der Westhuizen Date: Fri, 25 Apr 2025 07:53:44 +0200 Subject: [PATCH] fixed spelling of public in db (the L was missing) --- server/db/schemas/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/db/schemas/schema.ts b/server/db/schemas/schema.ts index a8627553..77872a02 100644 --- a/server/db/schemas/schema.ts +++ b/server/db/schemas/schema.ts @@ -99,7 +99,7 @@ export const exitNodes = sqliteTable("exitNodes", { name: text("name").notNull(), address: text("address").notNull(), // this is the address of the wireguard interface in gerbil endpoint: text("endpoint").notNull(), // this is how to reach gerbil externally - gets put into the wireguard config - publicKey: text("pubicKey").notNull(), + publicKey: text("publicKey").notNull(), listenPort: integer("listenPort").notNull(), reachableAt: text("reachableAt") // this is the internal address of the gerbil http server for command control });