[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2021-09-29 21:40:57 +02:00
الأصل 8d4aba538b
التزام 6734d4ce3c

عرض الملف

@@ -1501,7 +1501,7 @@ class RoomClient {
} }
// send some metadata about our file to peers in the room // send some metadata about our file to peers in the room
this.socket.emit('fileInfo', { this.socket.emit('fileInfo', {
peer_name: peer_name, peer_name: this.peer_name,
fileName: this.fileToSend.name, fileName: this.fileToSend.name,
fileSize: this.fileToSend.size, fileSize: this.fileToSend.size,
fileType: this.fileToSend.type, fileType: this.fileToSend.type,
@@ -1603,7 +1603,7 @@ class RoomClient {
sendFileDiv.style.display = 'none'; sendFileDiv.style.display = 'none';
this.sendInProgress = false; this.sendInProgress = false;
this.socket.emit('fileAbort', { this.socket.emit('fileAbort', {
peer_name: peer_name, peer_name: this.peer_name,
}); });
} }
} }