Commit 39b65acc by Lee Munkyeong

パラメータ修正

parent 70521b71
......@@ -2067,7 +2067,7 @@ CHAT_UI.showMakeRoomConfirmView = function() {
// ルーム名のtrimmingした後、URIencodingを行う
const encodedRoomName = encodeURIComponent(trimmedRoomName);
if (typeof(android) != "undefined") {
android.createChatRoom("1", userIdList.join(','), $('#newRoomName').val(), makeRoomFlg.MAKE_ROOM);
android.createChatRoom("1", userIdList.join(','), trimmedRoomName, makeRoomFlg.MAKE_ROOM);
} else {
webkit.messageHandlers.createChatRoom.postMessage({"roomType": "1", "userIdList": userIdList.join(','), "roomName": encodedRoomName});
}
......
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