Surround phone numbers with LTR unicode mark.

This also removes the previous TextView LTR flag that I had initially added for a one-off.
This commit is contained in:
Nicholas
2022-10-12 16:54:11 -04:00
committed by Alex Hart
parent 3a78031a71
commit 3d14c05114
3 changed files with 5 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ public class PhoneNumberFormatter {
}
public static @NonNull String prettyPrint(@NonNull String e164) {
return get(ApplicationDependencies.getApplication()).prettyPrintFormat(e164);
return StringUtil.forceLtr(get(ApplicationDependencies.getApplication()).prettyPrintFormat(e164));
}
public @NonNull String prettyPrintFormat(@NonNull String e164) {