From 27942975e22cd581c21bc87b46f5bb5d855712f6 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Tue, 24 Feb 2026 21:50:52 -0800 Subject: [PATCH] Don't short circuit on zero key because claude is useless tonight --- app/radio_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("#")