Don't short circuit on zero key because claude is useless tonight

This commit is contained in:
Jack Kingsman
2026-02-24 21:50:52 -08:00
parent 1c2fb148bc
commit 27942975e2
+1 -1
View File
@@ -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("#")