From c76b0e6adee219be4601f61acf3539ddd5af05c4 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 13 Apr 2026 03:32:37 +0200 Subject: [PATCH] fix: No default value for advertise routes --- src/node.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/node.rs b/src/node.rs index 5f599fb..314ce14 100644 --- a/src/node.rs +++ b/src/node.rs @@ -128,6 +128,13 @@ impl Node { // Sadly we have to this manually // TODO: Find a better way of doing this let default = OptionalNodeDeserialize { + network: Some(OptionalNetwork { + tailscale: Some(OptionalTailscale { + advertise_routes: Some(false), + ..Default::default() + }), + ..Default::default() + }), patches: Some(OptionalPatches { all: Some(vec![]), control_plane: Some(vec![]), -- 2.52.0