mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-09 06:45:02 +02:00
Don't short circuit on zero key because claude is useless tonight
This commit is contained in:
+1
-1
@@ -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("#")
|
||||
|
||||
Reference in New Issue
Block a user