about summary refs log tree commit diff
path: root/bskyweb/cmd
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-02-06 20:52:04 -0600
committerGitHub <noreply@github.com>2024-02-06 18:52:04 -0800
commit541eb8ded120007b54efb4c2eb67363d6199fb8c (patch)
tree21ffb86ec4a1dbce635985eeaad46b00a1f813c2 /bskyweb/cmd
parent29b31b7739db3ffe1512a966fded4e5f2a69b932 (diff)
downloadvoidsky-541eb8ded120007b54efb4c2eb67363d6199fb8c.tar.zst
Update open graph data (#2760)
* Update open graph data

* Format

* Fix typo
Diffstat (limited to 'bskyweb/cmd')
-rw-r--r--bskyweb/cmd/bskyweb/formating.go2
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
 }