Skip to content

Commit

Permalink
Merge branch 'develop' into sif-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 1, 2025
2 parents 9f61a39 + 9a203d7 commit c815331
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/client-twitter/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export async function buildConversationThread(
text: currentTweet.text,
source: "twitter",
url: currentTweet.permanentUrl,
imageUrls: currentTweet.photos.map((p) => p.url) || [],
inReplyTo: currentTweet.inReplyToStatusId
? stringToUuid(
currentTweet.inReplyToStatusId +
Expand Down Expand Up @@ -278,6 +279,7 @@ export async function sendTweet(
text: tweet.text,
source: "twitter",
url: tweet.permanentUrl,
imageUrls: tweet.photos.map((p) => p.url) || [],
inReplyTo: tweet.inReplyToStatusId
? stringToUuid(
tweet.inReplyToStatusId + "-" + client.runtime.agentId
Expand Down

0 comments on commit c815331

Please sign in to comment.