From 60a604f6350a2a9455c6db24459dd5c2b2b6eaa4 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 6 Dec 2023 00:06:45 +0100 Subject: [PATCH] Carrier change flag on listener replace --- RNS/Interfaces/AutoInterface.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RNS/Interfaces/AutoInterface.py b/RNS/Interfaces/AutoInterface.py index ea4511d..0845c58 100644 --- a/RNS/Interfaces/AutoInterface.py +++ b/RNS/Interfaces/AutoInterface.py @@ -334,6 +334,8 @@ class AutoInterface(Interface): thread.daemon = True thread.start() + self.carrier_changed = True + except Exception as e: RNS.log("Could not get device information while updating link-local addresses for "+str(self)+". The contained exception was: "+str(e), RNS.LOG_ERROR)