Commit 03ed6eb8 by Kim Peace

Hotfix for retry join

parent 0e296d27
......@@ -132,8 +132,16 @@ var bindOnShowServerError = function () {
var bindOnRetryJoinProcess = function () {
socket.on(SOCKET_KEY.RETRY_JOIN_PROCESS, function () {
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