Replace found option params

This commit is contained in:
M66B 2022-03-11 16:33:46 +01:00
parent ef34d04027
commit 7c3543f79f
1 changed files with 3 additions and 0 deletions

View File

@ -426,6 +426,9 @@ public class FragmentOptions extends FragmentBase {
} else if (view instanceof TextView) {
String description = ((TextView) view).getText().toString();
if (description.toLowerCase().contains(query)) {
description = description
.replace("%%", "%")
.replaceAll("%([0-9]\\$)?[sd]", "#");
String text = view.getContext().getString(R.string.title_title_description, title, description);
cursor.newRow()
.add(id++)