Skip to content

Commit

Permalink
Re-enable bot but force dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeto143 committed Mar 1, 2024
1 parent bdb8887 commit b20399c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions 5m5v-bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ try {
throw `Unable to load config file: ${error.message}`;
}

process.exit();

const languages = config.users.map(user => user.language);
const pollingIntervalMs = 40 * 1000;
const retweetDelayMs = config.delaytime || 2 * 60 * 1000;
const isDryRun = process.argv[2] === '--dry-run';
const isDryRun = true; //process.argv[2] === '--dry-run';

const tweetFilter = new TweetFilter(config.exclude, languages);
const rettiwt = new Rettiwt({ apiKey: config.users[0].api_key });
Expand Down

0 comments on commit b20399c

Please sign in to comment.