Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix crash from URI.create unhandled exceptions. Fixes #1844 (#1845)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin authored Sep 16, 2019
1 parent e536e33 commit 0e644da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void setURL(String urlString) {
"");
mBinding.url.setText(url.toString());

} catch (MalformedURLException e) {
} catch (MalformedURLException | IllegalArgumentException e) {
mBinding.url.setText("");
}

Expand Down

0 comments on commit 0e644da

Please sign in to comment.