Skip to content

Commit ab4a8d2

Browse files
committed
### 5.0.17-rc.3
1 parent 13cea95 commit ab4a8d2

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# chat21-web-widget ver 5.0
22

3+
### 5.0.17-rc.3
4+
- bug-fixed: endpoint parameter in mqtt.connect method in chat21clinet.js was hard-coded
5+
36
### 5.0.17-rc.2
47
- changed: loggerService accept string value as logLevel input parameter
58
- changed: LogLevel const in constant.ts to map string in number

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chat21/chat21-web-widget",
33
"author": "Panico Gabriele - Frontiere21 SRL",
4-
"version": "5.0.17-rc.2",
4+
"version": "5.0.17-rc.3",
55
"license": "AGPL-3.0",
66
"homepage": "https://www.tiledesk.com",
77
"repository": {

src/assets/js/chat21client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ class Chat21Client {
888888
}
889889
console.log("starting mqtt connection with LWT on:", presence_topic, this.endpoint)
890890
// client = mqtt.connect('mqtt://127.0.0.1:15675/ws',options)
891-
this.client = mqtt.connect('a://99.80.197.164:15675/ws',options)
891+
this.client = mqtt.connect(this.endpoint,options)
892892

893893
this.client.on('connect',
894894
() => {

0 commit comments

Comments
 (0)