This commit is contained in:
Tom Delmas 2019-02-21 23:37:43 +01:00
parent 66e94471b8
commit 913bad937f
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ public class ApplicationListAdapter extends RecyclerView.Adapter {
appItemBinding.appTrackerNb.setBackgroundResource(R.drawable.square_red);
if(versionName != null && !report.version.equals(data.versionName)) {
String string = context.getString(R.string.tested,versionCode,report.versionCode);
String string = context.getString(R.string.tested,versionName,report.version);
appItemBinding.otherVersion.setText(string);
appItemBinding.otherVersion.setVisibility(View.VISIBLE);
} else if (versionName == null && report.versionCode != versionCode) {