mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-21 01:27:48 +00:00
fix(external_api): Fix number of participants in meeting (#12052)
This commit is contained in:
committed by
yanas
parent
fb402c7131
commit
b709d079c9
@@ -55,7 +55,7 @@ import {
|
||||
removeBreakoutRoom,
|
||||
sendParticipantToRoom
|
||||
} from '../../react/features/breakout-rooms/actions';
|
||||
import { getBreakoutRooms } from '../../react/features/breakout-rooms/functions';
|
||||
import { getBreakoutRooms, getRoomsInfo } from '../../react/features/breakout-rooms/functions';
|
||||
import {
|
||||
sendMessage,
|
||||
setPrivateMessageRecipient,
|
||||
@@ -846,6 +846,10 @@ function initCommands() {
|
||||
callback(getBreakoutRooms(APP.store.getState()));
|
||||
break;
|
||||
}
|
||||
case 'rooms-info': {
|
||||
callback(getRoomsInfo(APP.store.getState()));
|
||||
break;
|
||||
}
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user