Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- 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('
|
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');
|