remove wrong name from "Contact already exists"

This commit is contained in:
Torsten Grote
2023-02-27 10:43:12 -03:00
parent 3bdbabf38a
commit 3c40c11dfb
2 changed files with 2 additions and 1 deletions

View File

@@ -171,7 +171,7 @@ public class NicknameFragment extends BaseFragment {
private void handleExistingContact(String name, Author existing) {
OnClickListener listener = (d, w) -> {
d.dismiss();
String str = getString(R.string.contact_already_exists, name);
String str = getString(R.string.contact_already_exists_general);
Toast.makeText(getContext(), str, LENGTH_LONG).show();
finish();
};