Skip to content

Commit

Permalink
Fix tweet.twitterUrl (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyrumo authored Jul 26, 2020
1 parent a990de5 commit 6eb1962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/EmbettyTweet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export default {
* @returns {!string} The URL leading to this tweet on Twitter.
*/
twitterUrl: function() {
return 'https://twitter.com/statuses/' + this.data.id_str;
return 'https://twitter.com/'+ this.screenName +'/status/' + this.data.id_str;
},
/**
Expand Down

0 comments on commit 6eb1962

Please sign in to comment.