Revert "Debug correlation ID"

This reverts commit e78602db93.
This commit is contained in:
M66B
2021-12-26 10:08:21 +01:00
parent d79b578222
commit 2aa333ee17
3 changed files with 6 additions and 22 deletions

View File

@@ -2908,13 +2908,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
private void bindExtras(TupleMessageEx message) {
int resid = 0;
if (infra && message.infrastructure != null) {
if ("fairemail".equals(message.infrastructure))
resid = R.mipmap.ic_launcher_round;
else {
String resname = "infra_" + message.infrastructure;
resid = context.getResources()
.getIdentifier(resname, "drawable", context.getPackageName());
}
String resname = "infra_" + message.infrastructure;
resid = context.getResources()
.getIdentifier(resname, "drawable", context.getPackageName());
}
if (resid != 0)
ibInfrastructure.setImageResource(resid);
@@ -4974,14 +4970,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
private void onActionShowInfra(TupleMessageEx message) {
int resid;
if ("fairemail".equals(message.infrastructure))
resid = R.string.app_name;
else {
String resname = "infra_" + message.infrastructure;
resid = context.getResources()
.getIdentifier(resname, "string", context.getPackageName());
}
String resname = "infra_" + message.infrastructure;
int resid = context.getResources()
.getIdentifier(resname, "string", context.getPackageName());
String infra = (resid < 0 ? message.infrastructure : context.getString(resid));
ToastEx.makeText(context, infra, Toast.LENGTH_LONG).show();
}