fix silly lil bug

This commit is contained in:
tsmethurst 2021-05-27 22:31:42 +02:00
parent a47085d141
commit d89a559dd9
1 changed files with 1 additions and 1 deletions

View File

@ -237,10 +237,10 @@ func (p *processor) dereferenceStatusFields(status *gtsmodel.Status, requestingU
}
l.Debugf("dereferenced attachment: %+v", deferencedAttachment)
deferencedAttachment.StatusID = status.ID
deferencedAttachment.Description = a.Description
if err := p.db.Put(deferencedAttachment); err != nil {
return fmt.Errorf("error inserting dereferenced attachment with remote url %s: %s", a.RemoteURL, err)
}
deferencedAttachment.Description = a.Description
attachmentIDs = append(attachmentIDs, deferencedAttachment.ID)
}
status.Attachments = attachmentIDs