diff options
Diffstat (limited to 'internal/typeutils/astointernal.go')
-rw-r--r-- | internal/typeutils/astointernal.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/internal/typeutils/astointernal.go b/internal/typeutils/astointernal.go index e8b585f5f..d0c0e51fa 100644 --- a/internal/typeutils/astointernal.go +++ b/internal/typeutils/astointernal.go @@ -192,11 +192,7 @@ func (c *converter) ASStatusToStatus(ctx context.Context, statusable ap.Statusab } // the html-formatted content of this status - if content, err := ap.ExtractContent(statusable); err != nil { - l.Infof("ASStatusToStatus: error extracting status content: %s", err) - } else { - status.Content = content - } + status.Content = ap.ExtractContent(statusable) // attachments to dereference and fetch later on (we don't do that here) if attachments, err := ap.ExtractAttachments(statusable); err != nil { |