fix crash in StatusBaseViewHolder

This commit is contained in:
Conny Duck 2019-09-07 13:14:16 +02:00
parent d83e7c4c70
commit 653d77bab2
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ public abstract class StatusBaseViewHolder extends RecyclerView.ViewHolder {
private static CharSequence getAttachmentDescription(Context context, Attachment attachment) {
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()) + " ";
}
if (TextUtils.isEmpty(attachment.getDescription())) {