From 13c32960f7a8fb78b7dd8e687118cb3da80cf7cf Mon Sep 17 00:00:00 2001 From: Nuwan Jaliyagoda Date: Fri, 8 Sep 2023 21:45:56 +0530 Subject: [PATCH] service route bug fix --- src/router.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router.ts b/src/router.ts index 8ecd238..f5f22b9 100644 --- a/src/router.ts +++ b/src/router.ts @@ -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(); }