Commit 4c5587db by Kim Peace

Merge branch 'bug/#44334_recoding_related_in_collaboration' into 'develop'

Bug/#44334 recoding related in collaboration

See merge request !253
parents e3bbf38a 6e4381a0
......@@ -20,7 +20,7 @@ CHAT_SOCKET.handleMessage = function (message, roomName, socketKey, collaboratio
) {
CHAT_SOCKET.cleanUpCollaborationMessage();
if (typeof CoviewBridge !== "undefined") {
if (typeof CoviewBridge !== "undefined" && g_isMainMan !== "undefined" && g_isMainMan == false) {
CoviewBridge.finishCollaboration();
}
return;
......
......@@ -508,7 +508,7 @@ CoviewBridge.exitCollaboration = function () {
if (globalUserInfo.collaborationType == COLLABORATION_TYPE.DOCUMENT) {
NativeBridgeDelegate.exitMeetingRoom();
}
if ($("#recordBtn .record").hasClass("disable")) {
recordStop().then(function () {
CoviewBridge.finishCollaboration();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment