[android] fix start of link in error message for adding contacts

This commit is contained in:
Jordi Salvat
2018-12-06 20:44:36 +01:00
parent 52ec56d690
commit 54b823e401

View File

@@ -207,7 +207,7 @@ public class UiUtils {
runnable.run();
}
};
ssb.setSpan(cSpan, start + 1, end, 0);
ssb.setSpan(cSpan, start, end, 0);
textView.setText(ssb);
textView.setMovementMethod(new LinkMovementMethod());
}