From 0b8336f49d4bf010f4c8d63c8db8efd5e4ec06b1 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sun, 5 Apr 2026 09:31:37 +0100 Subject: [PATCH] fix(config): align bluebubbles network schema --- src/config/zod-schema.providers-core.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/config/zod-schema.providers-core.ts b/src/config/zod-schema.providers-core.ts index 4fe886330fe..60797eb3d71 100644 --- a/src/config/zod-schema.providers-core.ts +++ b/src/config/zod-schema.providers-core.ts @@ -1424,7 +1424,12 @@ export const BlueBubblesAccountSchemaBase = z mediaMaxMb: z.number().int().positive().optional(), mediaLocalRoots: z.array(z.string()).optional(), sendReadReceipts: z.boolean().optional(), - allowPrivateNetwork: z.boolean().optional(), + network: z + .object({ + dangerouslyAllowPrivateNetwork: z.boolean().optional(), + }) + .strict() + .optional(), blockStreaming: z.boolean().optional(), blockStreamingCoalesce: BlockStreamingCoalesceSchema.optional(), groups: z.record(z.string(), BlueBubblesGroupConfigSchema.optional()).optional(),