JPLTedCas commited on
Commit
f8432b3
·
1 Parent(s): c56795b

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +1 -1
templates/index.html CHANGED
@@ -12,7 +12,7 @@
12
 
13
  <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.1/socket.io.js"></script>
14
  <script>
15
- const socket = io.connect('http://' + document.domain + ':' + location.port);
16
  const startRecordingButton = document.getElementById('startRecording');
17
  const stopRecordingButton = document.getElementById('stopRecording');
18
  const sendAudioButton = document.getElementById('sendAudio');
 
12
 
13
  <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.0.1/socket.io.js"></script>
14
  <script>
15
+ const socket = io.connect('https://' + document.domain + ':' + location.port, {secure: true});
16
  const startRecordingButton = document.getElementById('startRecording');
17
  const stopRecordingButton = document.getElementById('stopRecording');
18
  const sendAudioButton = document.getElementById('sendAudio');