Commit 2221b220 by Lee Munkyeong

スリープから起きた時画面リロード

parent 37617ade
......@@ -1877,6 +1877,14 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
}
@Override
protected void onResume() {
super.onResume();
if (mChatWebView.getUrl() != null && mChatWebView.getUrl().equals(CHAT_ROOM_PAGE_URL)) {
mChatWebView.loadUrl("javascript:window.location.reload();");
}
}
@Override
public void onDestroy(){
exitAndDeleteMeetingRoom();
super.onDestroy();
......
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