We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97f5b8d + fb06082 commit 793d2b8Copy full SHA for 793d2b8
WordPress/src/main/java/org/wordpress/android/ui/WPWebViewActivity.java
@@ -249,8 +249,10 @@ private void showSubtitle(ActionBar actionBar) {
249
}
250
251
String originalUrl = extras.getString(URL_TO_LOAD);
252
- Uri uri = Uri.parse(originalUrl);
253
- actionBar.setSubtitle(uri.getHost());
+ if (originalUrl != null) {
+ Uri uri = Uri.parse(originalUrl);
254
+ actionBar.setSubtitle(uri.getHost());
255
+ }
256
257
258
private void initRetryButton() {
0 commit comments