Skip to content

Commit

Permalink
service route bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NuwanJ-RhinoPartners committed Sep 8, 2023
1 parent 2dd1320 commit 13c3296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export class MQTTRouter {
this.errorHandler = onError;
this._unique = isUnique;
this._id = uuidv4();
this._discoveryTopic = resolveChannelTopic(discoveryTopic);
this._terminateTopic = resolveChannelTopic(terminateTopic);
this._discoveryTopic = discoveryTopic;
this._terminateTopic = terminateTopic;
this._created = new Date();
}

Expand Down

0 comments on commit 13c3296

Please sign in to comment.