From 862ca0a8a5b2b7cba4f820c23bbc9d7fe5b5f6f0 Mon Sep 17 00:00:00 2001 From: Aioros Date: Mon, 29 Jan 2024 10:47:52 -0500 Subject: [PATCH] Fix for network settings in "browse" command --- src/cli/commands/browse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/commands/browse.ts b/src/cli/commands/browse.ts index 8feb8b1..6c3c77a 100644 --- a/src/cli/commands/browse.ts +++ b/src/cli/commands/browse.ts @@ -21,7 +21,7 @@ export default class extends Command { options.discoveryConfig, ); - for await (const device of discovery.discover()) { + for await (const device of discovery.discover(options.networkConfig)) { options.logResult(device); } }