1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-22 07:42:52 +00:00

Replace all

This commit is contained in:
M66B 2024-12-20 07:30:02 +01:00
parent 469c2de8cd
commit 7b50783b0c

View file

@ -10460,7 +10460,7 @@ public class FragmentMessages extends FragmentBase
tvExpired.setVisibility(record.isExpired(time) ? View.VISIBLE : View.GONE); tvExpired.setVisibility(record.isExpired(time) ? View.VISIBLE : View.GONE);
if (!TextUtils.isEmpty(algo)) if (!TextUtils.isEmpty(algo))
algo = algo.replace("(?i)With", "/"); algo = algo.replaceAll("(?i)With", "/");
tvAlgorithm.setText(algo); tvAlgorithm.setText(algo);
tvKeyAlgorithmTitle.setVisibility(info ? View.VISIBLE : View.GONE); tvKeyAlgorithmTitle.setVisibility(info ? View.VISIBLE : View.GONE);