Add process for when the createdAt is null.
This commit is contained in:
parent
b4bb80c4d5
commit
4264fc42d6
2 changed files with 6 additions and 2 deletions
|
@ -388,8 +388,10 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
|
|||
sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
||||
}
|
||||
time = sdf.format(createdAt);
|
||||
timestampInfo.setText(time);
|
||||
} else {
|
||||
time = "??:??:??";
|
||||
}
|
||||
timestampInfo.setText(time);
|
||||
} else {
|
||||
// This is the visible timestampInfo.
|
||||
String readout;
|
||||
|
|
|
@ -142,8 +142,10 @@ abstract class StatusBaseViewHolder extends RecyclerView.ViewHolder {
|
|||
sdf = new SimpleDateFormat("HH:mm:ss", Locale.getDefault());
|
||||
}
|
||||
time = sdf.format(createdAt);
|
||||
timestampInfo.setText(time);
|
||||
} else {
|
||||
time = "??:??:??";
|
||||
}
|
||||
timestampInfo.setText(time);
|
||||
} else {
|
||||
// This is the visible timestampInfo.
|
||||
String readout;
|
||||
|
|
Loading…
Reference in a new issue