fix: show media type in timeline view

This commit is contained in:
Dan Anglin 2024-06-20 12:30:20 +01:00
parent 96ad6a7b55
commit 67d4caf4cb
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -104,7 +104,8 @@ func (p Printer) PrintStatusList(list model.StatusList) {
} }
for _, media := range mediaAttachments { for _, media := range mediaAttachments {
builder.WriteString("\n\n" + p.imageIcon + " Media (" + media.ID + ")" + "\n ") builder.WriteString("\n\n" + p.imageIcon + " Media attachment: " + media.ID)
builder.WriteString("\n Media type: " + media.Type + "\n ")
description := media.Description description := media.Description
if description == "" { if description == "" {