send operator commands with room=None instead of room=room

This commit is contained in:
kc1awv
2026-01-01 15:38:53 -05:00
parent 7c6f08ec8e
commit beca578888
+3 -2
View File
@@ -2041,10 +2041,11 @@ class HubService:
link,
src=self.identity.hash,
text="not authorized",
room=room,
room=None,
)
return True
self._emit_notice(outgoing, link, room, self._format_stats())
# Send response without room field for hub-level command
self._emit_notice(outgoing, link, None, self._format_stats())
return True
if cmd in ("who", "names"):