From d4156d78c6993cefed872382b27627a18b672ca3 Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Mon, 22 Apr 2024 20:09:30 +0200 Subject: [PATCH] Add missing StoreForward config from radio --- meshtastic/mesh_interface.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meshtastic/mesh_interface.py b/meshtastic/mesh_interface.py index aee0868..7c7f62d 100644 --- a/meshtastic/mesh_interface.py +++ b/meshtastic/mesh_interface.py @@ -896,6 +896,10 @@ class MeshInterface: self.localNode.moduleConfig.external_notification.CopyFrom( fromRadio.moduleConfig.external_notification ) + elif fromRadio.moduleConfig.HasField("store_forward"): + self.localNode.moduleConfig.store_forward.CopyFrom( + fromRadio.moduleConfig.store_forward + ) elif fromRadio.moduleConfig.HasField("range_test"): self.localNode.moduleConfig.range_test.CopyFrom( fromRadio.moduleConfig.range_test