Skip to content

Commit

Permalink
Update Following
Browse files Browse the repository at this point in the history
  • Loading branch information
UNFACED123 authored Apr 25, 2022
1 parent 71e016a commit 8044b77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ t.on('tweet', function (tweet) {
t.on('error', function (err) {
console.log('Oh no')
})
let track = config.following;
for (var i = 0; i < track.length; i++) {
t.follow(track[i]);
console.log(`[TWITTER] Following Twitter User [ID]${track[i]}`)
let track = config.followingUser;
track.forEach(user => {
t.follow(user.id);
console.log(`[TWITTER] Following Twitter User @${user.name}`);
console.log(`For Support please join https://discord.gg/PrGCCWpDbP`)
}

Expand Down

0 comments on commit 8044b77

Please sign in to comment.