Fix regression on permalink click

This commit is contained in:
Benoit Marty 2019-07-12 12:46:02 +02:00
parent 3625c462f0
commit 34d14eb304
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ Other changes:
-

Bugfix:
-
- Fix regression on permalink click

Translations:
-

View File

@ -42,7 +42,7 @@ object MatrixLinkify {
hasMatch = true
val startPos = match.range.first
if (startPos == 0 || text[startPos - 1] != '/') {
val endPos = match.range.last
val endPos = match.range.last + 1
val url = text.substring(match.range)
val span = MatrixPermalinkSpan(url, callback)
spannable.setSpan(span, startPos, endPos, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
@ -51,5 +51,5 @@ object MatrixLinkify {
}
return hasMatch
}

}