Merge branch 'master' into dev
This commit is contained in:
commit
5b36d1b677
|
@ -7,6 +7,8 @@ emqttd ChangeLog
|
|||
|
||||
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
|
||||
|
||||
Bugfix: fix websocket url in emqttd/priv/www/websocket.html
|
||||
|
||||
Improve: issue #136 - $SYS topics result should not include $SYS messages
|
||||
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
return document.getElementById(id);
|
||||
}
|
||||
function go() {
|
||||
ws = new WebSocket("ws://" + location.host + "/mqtt/wsocket");
|
||||
ws = new WebSocket("ws://" + location.host + "/mqtt");
|
||||
ws.onopen = function () {
|
||||
$('connstate').innerHTML = 'CONNECTED';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue