Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dimdenGD committed May 16, 2024
1 parent 535b762 commit c3960b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3153,7 +3153,7 @@ async function appendTweet(t, timelineContainer, options = {}) {
}
let tweetObject = {
status: text,
attachment_url: `/${t.user.screen_name}/status/${t.id_str}`
attachment_url: `https://twitter.com/${t.user.screen_name}/status/${t.id_str}`
};
if (uploadedMedia.length > 0) {
tweetObject.media_ids = uploadedMedia.join(',');
Expand Down
2 changes: 1 addition & 1 deletion scripts/tweetviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2114,7 +2114,7 @@ class TweetViewer {
}
let tweetObject = {
status: text,
attachment_url: `/${t.user.screen_name}/status/${t.id_str}`
attachment_url: `https://twitter.com/${t.user.screen_name}/status/${t.id_str}`
};
if (uploadedMedia.length > 0) {
tweetObject.media_ids = uploadedMedia.join(',');
Expand Down

0 comments on commit c3960b8

Please sign in to comment.