Fix #1143 - Fix a crash when scrolling

This commit is contained in:
Thomas 2025-03-13 15:52:48 +01:00
parent 916fe40381
commit 90da257037

View file

@ -235,10 +235,10 @@ public class SpannableHelper {
String url = span.getURL();
int start = content.getSpanStart(span);
int end = content.getSpanEnd(span);
boolean sameContent = (content.subSequence(start,end).toString().trim().equals(url.trim()));
if (start < 0 || end > content.length()) {
continue;
}
boolean sameContent = (content.subSequence(start,end).toString().trim().equals(url.trim()));
content.removeSpan(span);
//Get the matching word associated to the URL
String word = content.subSequence(start, end).toString();