Minor improvements

This commit is contained in:
M66B
2018-08-05 16:14:43 +00:00
parent 9f626e3489
commit d6363b7f81
12 changed files with 19 additions and 25 deletions

View File

@@ -69,7 +69,8 @@ public class FragmentWebView extends FragmentEx {
}
});
url = getArguments().getString("link");
Bundle args = getArguments();
url = (args == null ? null : args.getString("link"));
webview.loadUrl(url);
setSubtitle(url);