Commit 0f9aa6c2 by Kim Peace

Merge branch 'develop' into debug/console_logs

# Conflicts:
#	public_new/js/views/collaboration/fermi-web-socket-bridge.js
parents 75156426 f598d8fc
...@@ -320,7 +320,7 @@ ChatRoom.renderCollaborationMessage = function (message, isToday, isOtherYear) { ...@@ -320,7 +320,7 @@ ChatRoom.renderCollaborationMessage = function (message, isToday, isOtherYear) {
}; };
ChatRoom.getMeetingID = function (meetingID) { ChatRoom.getMeetingID = function (meetingID) {
return typeof meetingID != "undefined" ? 0 : meetingID; return typeof meetingID == "undefined" ? 0 : meetingID;
}; };
ChatRoom.getDisplayUserList = function (userList) { ChatRoom.getDisplayUserList = function (userList) {
......
...@@ -61,10 +61,7 @@ FermiWebSocketBridge.hostRequestDone = function (hostID) { ...@@ -61,10 +61,7 @@ FermiWebSocketBridge.hostRequestDone = function (hostID) {
// GET_COLLABORATION_TYPE_RESPONSE // GET_COLLABORATION_TYPE_RESPONSE
FermiWebSocketBridge.getCollaborationTypeResponse = function (loginID) { FermiWebSocketBridge.getCollaborationTypeResponse = function (loginID) {
let meetingID = globalUserInfo.meetingID ?? 0;
if (typeof meetingID == undefined) {
var meetingID = 0;
}
console.log( console.log(
"peacekim:: FermiWebSocketBridge.getCollaborationTypeResponse hostID: " + "peacekim:: FermiWebSocketBridge.getCollaborationTypeResponse hostID: " +
......
...@@ -138,7 +138,7 @@ CoviewBridge.bindMessageEvent = function () { ...@@ -138,7 +138,7 @@ CoviewBridge.bindMessageEvent = function () {
} }
switch (json.api) { switch (json.api) {
case "LoginResponse": case "LoginResponse":
CollaborationFeature.didReceiveLoginResponseMessage(); await CollaborationFeature.didReceiveLoginResponseMessage();
break; break;
case "CreateRoomResponse": case "CreateRoomResponse":
if (json.resultCode == 200) { if (json.resultCode == 200) {
......
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