Fixed missing none check in interface discovery sanitizer thanks to PAzter1101

This commit is contained in:
Mark Qvist
2026-05-13 10:34:58 +02:00
parent 64ebdd0ee3
commit c86b9c9703
+1
View File
@@ -87,6 +87,7 @@ class InterfaceAnnouncer():
RNS.trace_exception(e)
def sanitize(self, in_str):
if in_str == None: return None
sanitized = in_str.replace("\n", "")
sanitized = sanitized.replace("\r", "")
sanitized = sanitized.strip()