diff options
Diffstat (limited to 'bskyweb/cmd')
-rw-r--r-- | bskyweb/cmd/bskyweb/formating.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/cmd/bskyweb/formating.go b/bskyweb/cmd/bskyweb/formating.go index 023ba3f51..edd085ce8 100644 --- a/bskyweb/cmd/bskyweb/formating.go +++ b/bskyweb/cmd/bskyweb/formating.go @@ -51,7 +51,7 @@ func ExpandPostText(post *appbsky.FeedPost) string { } // TODO: could embed the actual post text? if post.Embed != nil && (post.Embed.EmbedRecord != nil || post.Embed.EmbedRecordWithMedia != nil) { - postText = fmt.Sprintf("%s\n\n[contains quote post or other embeded content]", postText) + postText = fmt.Sprintf("%s\n\n[contains quote post or other embedded content]", postText) } return postText } |