mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
e6e7236059
commit
539874aded
|
@ -506,7 +506,9 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
|
|||
if (host != null) {
|
||||
int textColorLink = Helper.resolveColor(context, android.R.attr.textColorLink);
|
||||
int index = text.indexOf(host);
|
||||
ssb.setSpan(new ForegroundColorSpan(textColorLink), index, index + host.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
if (index >= 0)
|
||||
ssb.setSpan(new ForegroundColorSpan(textColorLink),
|
||||
index, index + host.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
}
|
||||
return ssb;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue