[mirotalksfu] - fix peerAction...

main
Miroslav Pejic 5 years ago
parent b9f055cc25
commit 5eaebcaee9

@ -202,6 +202,7 @@ body {
--------------------------------------------------------------*/
.tab {
overflow: hidden;
background-color: rgba(0, 0, 0, 0.4);
}
/* Style the buttons inside the tab */

@ -2183,6 +2183,9 @@ class RoomClient {
peerAction(from_peer_name, id, action, emit = true, broadcast = false) {
let peer_id = id;
const words = peer_id.split('___');
peer_id = words[0];
if (emit) {
let data = {
from_peer_name: this.peer_name,
@ -2193,10 +2196,6 @@ class RoomClient {
if (!broadcast) {
if (participantsCount === 1) return;
const words = peer_id.split('___');
peer_id = words[0];
switch (action) {
case 'eject':
let peer = this.getId(peer_id);

Loading…
Cancel
Save