|
|
@ -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())) { |
|
|
|