Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Crisp2013 committed Sep 13, 2023
1 parent e53d68d commit 3867979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tweetviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ class TweetViewer {
tweet.querySelector('.tweet-top').append(icon, span);
}
if(options.mainTweet) {
let likers = (vars.showQuoteCount) ? mainTweetLikers.slice(0, 6) : mainTweetLikers.slice(0, 8);
let likers = (vars.showQuoteCount) ? this.mainTweetLikers.slice(0, 6) : this.mainTweetLikers.slice(0, 8);
for(let i in likers) {
let liker = likers[i];
let a = document.createElement('a');
Expand Down

0 comments on commit 3867979

Please sign in to comment.