diff --git a/markwon-core/src/main/java/io/noties/markwon/LinkResolverDef.java b/markwon-core/src/main/java/io/noties/markwon/LinkResolverDef.java index 5882613f..f30a861f 100644 --- a/markwon-core/src/main/java/io/noties/markwon/LinkResolverDef.java +++ b/markwon-core/src/main/java/io/noties/markwon/LinkResolverDef.java @@ -25,7 +25,9 @@ public class LinkResolverDef implements LinkResolver { try { context.startActivity(intent); } catch (ActivityNotFoundException e) { - Log.w("LinkResolverDef", "Actvity was not found for the link: '" + link + "'"); + Log.w("LinkResolverDef", "Activity was not found for the link: '" + link + "'"); + } catch (Exception e) { + Log.w("LinkResolverDef", e.getMessage(), e); } }