1
0
mirror of https://github.com/etesync/android synced 2024-11-22 07:58:09 +00:00

Webview: add missing call to super's save instance state.

This commit is contained in:
Tom Hacohen 2019-05-28 10:40:25 +01:00
parent b00f8c3745
commit 7932610c87

View File

@ -133,6 +133,7 @@ class WebViewActivity : BaseActivity() {
}
override fun onSaveInstanceState(outState: Bundle) {
super.onSaveInstanceState(outState)
mWebView!!.saveState(outState)
}