Fixed possible Android java.lang.NullPointerException in InAppBrowserActivity.onCreateOptionsMenu about webView.getTitle()
This commit is contained in:
parent
f58eea323a
commit
ef9580b287
|
@ -1,3 +1,7 @@
|
||||||
|
## 5.4.3+7
|
||||||
|
|
||||||
|
- Fixed possible Android java.lang.NullPointerException in InAppBrowserActivity.onCreateOptionsMenu about webView.getTitle()
|
||||||
|
|
||||||
## 5.4.3+6
|
## 5.4.3+6
|
||||||
|
|
||||||
- Fixed "iOS flutter_inappwebview/URLRequest.swift:13: Fatal error: Unexpectedly found nil while unwrapping an Optional value" [#1173](https://github.com/pichillilorenzo/flutter_inappwebview/issues/1173)
|
- Fixed "iOS flutter_inappwebview/URLRequest.swift:13: Fatal error: Unexpectedly found nil while unwrapping an Optional value" [#1173](https://github.com/pichillilorenzo/flutter_inappwebview/issues/1173)
|
||||||
|
|
|
@ -208,7 +208,7 @@ public class InAppBrowserActivity extends AppCompatActivity implements InAppBrow
|
||||||
menu = m;
|
menu = m;
|
||||||
|
|
||||||
if (actionBar != null && (options.toolbarTopFixedTitle == null || options.toolbarTopFixedTitle.isEmpty()))
|
if (actionBar != null && (options.toolbarTopFixedTitle == null || options.toolbarTopFixedTitle.isEmpty()))
|
||||||
actionBar.setTitle(webView.getTitle());
|
actionBar.setTitle(webView != null ? webView.getTitle() : "");
|
||||||
|
|
||||||
if (menu == null)
|
if (menu == null)
|
||||||
return super.onCreateOptionsMenu(m);
|
return super.onCreateOptionsMenu(m);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: flutter_inappwebview
|
name: flutter_inappwebview
|
||||||
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
|
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
|
||||||
version: 5.4.3+6
|
version: 5.4.3+7
|
||||||
homepage: https://github.com/pichillilorenzo/flutter_inappwebview
|
homepage: https://github.com/pichillilorenzo/flutter_inappwebview
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in New Issue