fix crash in StatusBaseViewHolder
This commit is contained in:
parent
d83e7c4c70
commit
653d77bab2
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ public abstract class StatusBaseViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
|
||||||
private static CharSequence getAttachmentDescription(Context context, Attachment attachment) {
|
private static CharSequence getAttachmentDescription(Context context, Attachment attachment) {
|
||||||
String duration = "";
|
String duration = "";
|
||||||
if(attachment.getMeta().getDuration() != null && attachment.getMeta().getDuration() > 0) {
|
if(attachment.getMeta() != null && attachment.getMeta().getDuration() != null && attachment.getMeta().getDuration() > 0) {
|
||||||
duration = formatDuration(attachment.getMeta().getDuration()) + " ";
|
duration = formatDuration(attachment.getMeta().getDuration()) + " ";
|
||||||
}
|
}
|
||||||
if (TextUtils.isEmpty(attachment.getDescription())) {
|
if (TextUtils.isEmpty(attachment.getDescription())) {
|
||||||
|
|
Loading…
Reference in a new issue