Skip to content

Commit

Permalink
Merge pull request #11 from Aculeasis/Ver2
Browse files Browse the repository at this point in the history
Change websocket port
  • Loading branch information
lanket committed Jan 4, 2019
2 parents 3e93971 + 09d741a commit 42fd76b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mdmPiTerminal/mpt_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ <h2>RHVoice</h2>

function doConnect()
{
websocket = new WebSocket("ws://" + document.remote_log_form.terminal_ip.value + ":8999/");
websocket = new WebSocket("ws://" + document.remote_log_form.terminal_ip.value + ":7999/");
websocket.onopen = function(evt) { onOpen(evt) };
websocket.onclose = function(evt) { onClose(evt) };
websocket.onmessage = function(evt) { onMessage(evt) };
Expand Down

0 comments on commit 42fd76b

Please sign in to comment.