Commit 554beef6 by Kim Peace

Merge branch 'develop' into debug/console_logs

parents 753fd644 03ed6eb8
......@@ -145,8 +145,16 @@ var bindOnRetryJoinProcess = function () {
socket.on(SOCKET_KEY.RETRY_JOIN_PROCESS, function () {
console.log("peacekim:: on SOCKET_KEY.RETRY_JOIN_PROCESS");
currentUserInfo.configureLanguage();
const joinInfo = new JoinInfo(
currentUserInfo.sid,
currentUserInfo.loginID,
currentUserInfo.shopName,
roomInfo.roomID,
roomInfo.roomName,
currentUserInfo.shopMemberID
);
// webでのsocket connect
CHAT_SOCKET.emitJoin(params, true, true);
CHAT_SOCKET.emitJoin(joinInfo, true, true);
});
};
......
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