Commit 51097c96 by Kim Jinsung

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

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