From 67842926db6df1f07ebaddd42715d28ea16ee5fd Mon Sep 17 00:00:00 2001 From: Daniel-Aaron-Bloom <76709210+Daniel-Aaron-Bloom@users.noreply.github.com> Date: Mon, 19 Jan 2026 02:41:59 -0800 Subject: [PATCH] Change websocketUrl default to use internal addon name Obviously this is going to be install dependent, so maybe it's just better to document this in the readme. --- matter_door_lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matter_door_lock.py b/matter_door_lock.py index 75cb5b6..000f5c9 100755 --- a/matter_door_lock.py +++ b/matter_door_lock.py @@ -148,7 +148,7 @@ async def main(args: Sequence[str] | None = None) -> None: dest="websocketUrl", action="store", type=str, - default="ws://localhost:5580/ws", + default="ws://core-matter-server:5580/ws", ) prog.add_argument( "--timeout",