Commit 51097c96 by Kim Jinsung

文書協業開始、作成時に最初に作業一覧が表示する問題対応

parent 639fd8fc
......@@ -1277,7 +1277,6 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
public int createContentView() {
finishBeforeContentListActivity();
startPIPMode();
Integer meetingId = null;
meetingManager.close();
try {
......@@ -1294,13 +1293,13 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
} catch (Exception e) {
mChatWebView.showAlert(getString(R.string.msg_error_connection_error_meeting_room));
}
startPIPMode();
startContentListActivity(true);
return meetingId;
}
public void startContentView() {
finishBeforeContentListActivity();
startPIPMode();
meetingManager.close();
try {
connectMeetingServer();
......@@ -1310,6 +1309,7 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
} catch (Exception e) {
mChatWebView.showAlert(getString(R.string.msg_error_connection_error_meeting_room));
}
startPIPMode();
startContentListActivity(false);
}
......
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