diff --git a/app/radio_sync.py b/app/radio_sync.py index f91b34a..3ac2d89 100644 --- a/app/radio_sync.py +++ b/app/radio_sync.py @@ -177,7 +177,7 @@ async def sync_and_offload_channels(mc: MeshCore) -> dict: secret = payload.get("channel_secret", b"") # Skip empty channels - if not name or name == "\x00" * len(name) or all(b == 0 for b in secret): + if not name or name == "\x00" * len(name): continue is_hashtag = name.startswith("#")