Commit 540a5369 by Lee Munkyeong

チャット画面修正。

parent 8579b74d
...@@ -64,9 +64,9 @@ public class CommunicationLogic extends AbstractLogic { ...@@ -64,9 +64,9 @@ public class CommunicationLogic extends AbstractLogic {
JSONArray attendUsers = new JSONArray(); JSONArray attendUsers = new JSONArray();
for (ShopMemberDto user : userList) { for (ShopMemberDto user : userList) {
Map<String, Object> userMap = new HashMap<String, Object>(); Map<String, Object> userMap = new HashMap<String, Object>();
userMap.put(ABookCommConstants.KEY.INSERT_DATE, user.shopMemberId); userMap.put(ABookCommConstants.KEY.SHOP_MEMBER_ID, user.shopMemberId);
userMap.put(ABookCommConstants.KEY.INSERT_DATE, user.profileUrl); userMap.put(ABookCommConstants.KEY.PROFILE_URL, user.profileUrl);
userMap.put(ABookCommConstants.KEY.INSERT_DATE, user.shopMemberName); userMap.put(ABookCommConstants.KEY.SHOP_MEMBER_NAME, user.shopMemberName);
JSONObject jsonObject = new JSONObject(userMap); JSONObject jsonObject = new JSONObject(userMap);
attendUsers.put(jsonObject); attendUsers.put(jsonObject);
} }
......
...@@ -700,7 +700,6 @@ public class ChatWebviewActivity extends ParentWebViewActivity { ...@@ -700,7 +700,6 @@ public class ChatWebviewActivity extends ParentWebViewActivity {
@JavascriptInterface @JavascriptInterface
public String getRoomList(String roomType) { public String getRoomList(String roomType) {
String chatRoomListStr = communicationLogic.getChatRoomList(Integer.parseInt(roomType)); String chatRoomListStr = communicationLogic.getChatRoomList(Integer.parseInt(roomType));
return chatRoomListStr; return chatRoomListStr;
} }
......
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