Commit 6dd4bdce by Lee Munkyeong

Merge branch 'communication/feature/43036_reload_on_awake_from_sleep_mode' into…

Merge branch 'communication/feature/43036_reload_on_awake_from_sleep_mode' into 'communication/develop'

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

See merge request !174
parents 37617ade 2221b220
......@@ -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