Recognize links without protocol

This commit is contained in:
M66B
2019-04-11 11:52:43 +02:00
parent 2a588443f2
commit 683087bfe4
3 changed files with 7 additions and 2 deletions

View File

@@ -291,7 +291,7 @@ public class HtmlHelper {
if (BuildConfig.DEBUG)
Log.i("Web url=" + matcher.group() + " linked=" + linked + " scheme=" + scheme);
if (linked || scheme == null)
if (linked)
span.appendText(text.substring(pos, matcher.end()));
else {
span.appendText(text.substring(pos, matcher.start()));