Update system.py

This commit is contained in:
SpudGunMan
2025-10-18 08:41:22 -07:00
parent 6e89762f1d
commit 345541dfb5
+1
View File
@@ -830,6 +830,7 @@ def decode_raw_bytes(raw_bytes):
# Decode raw bytes received from a Meshtastic device.
try:
decoded_message = raw_bytes.decode('utf-8', errors='ignore')
# reminder for a synch word check or crc check if needed later
logger.debug(f"Decoded raw bytes: {decoded_message}")
return decoded_message
except Exception as e: