Fixed handling send problems

This commit is contained in:
M66B
2018-08-14 14:50:41 +00:00
parent afb7668d6e
commit f2779c7f0f
2 changed files with 8 additions and 16 deletions

View File

@@ -135,7 +135,7 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
"\n" + message.msgid;
if (operations != null)
for (EntityOperation op : operations)
text += "\n" + op.name + " " + df.format(new Date(op.created));
text += "\n" + op.id + ":" + op.name + " " + df.format(new Date(op.created));
tvError.setText(text);
tvError.setVisibility(View.VISIBLE);