Switched to AUTOLINK_WEB_URL

This commit is contained in:
M66B 2019-06-05 09:51:41 +02:00
parent e172a02d48
commit 31679a9560
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ public class HtmlHelper {
if (node instanceof TextNode) {
TextNode tnode = (TextNode) node;
Matcher matcher = PatternsCompat.WEB_URL.matcher(tnode.text());
Matcher matcher = PatternsCompat.AUTOLINK_WEB_URL.matcher(tnode.text());
if (matcher.find()) {
Element span = document.createElement("span");