Skip to content

Commit da79478

Browse files
committed
fix: exception class 변경
1 parent 9dfe6c7 commit da79478

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/android/InAppBrowser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,8 +1422,8 @@ else if (url.startsWith(INTENT_PROTOCOL_START)) {
14221422
Intent intent =Intent.parseUri(url, Intent.URI_INTENT_SCHEME);
14231423
Uri uri = Uri.parse(intent.getDataString());
14241424
cordova.getActivity().startActivity(new Intent(Intent.ACTION_VIEW, uri));
1425-
} catch (URISyntaxException e) {
1426-
LOG.e(LOG_TAG, e.getLocalizedMessage());
1425+
} catch(Exception e) {
1426+
LOG.e(LOG_TAG, "Error Start Intent " + url + ": " + e.toString());
14271427
}
14281428
return true;
14291429
}

0 commit comments

Comments
 (0)