Skip to content

Commit

Permalink
Release 1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Jun 29, 2024
1 parent 73f710f commit 8a180cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/matterbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@ export class Matterbridge extends EventEmitter {
}

/**
* Creates a Matter server using the provided storage manager.
* Creates a Matter server using the provided storage manager and the provided mdnsInterface.
* @param storageManager The storage manager to be used by the Matter server.
*
*/
Expand All @@ -2361,7 +2361,7 @@ export class Matterbridge extends EventEmitter {
this.log.error(`Invalid mdnsInterface: ${this.mdnsInterface}. Available interfaces are: ${availableInterfaces.join(', ')}. Using all available interfaces.`);
this.mdnsInterface = undefined;
} else {
this.log.info(`***Using mdnsInterface: ${this.mdnsInterface}`);
this.log.info(`Using mdnsInterface '${this.mdnsInterface}' for the Matter server MdnsBroadcaster.`);
}
}
const matterServer = new MatterServer(storageManager, { mdnsInterface: this.mdnsInterface });
Expand Down

0 comments on commit 8a180cb

Please sign in to comment.