Skip to content

Commit

Permalink
bluesky: fix post formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw committed Sep 29, 2024
1 parent c6c4a70 commit 486ee97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autopost/_backend/bluesky.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def health_check(self) -> Result[None, str]:
return Err(f"{self._config.name} failed profile health check")

def post(self, content: str, url: str, *, tags: list[str] = []) -> Result[Url, str]:
post = client_utils.TextBuilder().text(content).link(url, url)
post = client_utils.TextBuilder().text(f"{content} ").link(url, url)

try:
resp = self._client.send_post(post)
Expand Down

0 comments on commit 486ee97

Please sign in to comment.