mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-30 09:31:11 +01:00
Show operation account
This commit is contained in:
@@ -93,7 +93,10 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
|
||||
sb.append(' ').append(ex.toString());
|
||||
}
|
||||
|
||||
tvFolder.setText(operation.accountName + "/" + operation.folderName);
|
||||
String folderName =
|
||||
(operation.accountName == null ? "" : operation.accountName + "/") + operation.folderName;
|
||||
|
||||
tvFolder.setText(folderName);
|
||||
tvMessage.setText(operation.message == null ? null : Long.toString(operation.message));
|
||||
tvOperation.setText(sb.toString());
|
||||
tvTime.setText(DateUtils.getRelativeTimeSpanString(context, operation.created));
|
||||
|
||||
Reference in New Issue
Block a user