We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f4316e + 35f243a commit ccdf3dbCopy full SHA for ccdf3db
packages/client-twitter/src/post.ts
@@ -33,8 +33,8 @@ export class TwitterPostClient extends ClientBase {
33
this.generateNewTweet();
34
setTimeout(
35
generateNewTweetLoop,
36
- (Math.floor(Math.random() * (4 - 1 + 1)) + 1) * 60 * 60 * 1000
37
- ); // Random interval between 1 and 4 hours
+ (Math.floor(Math.random() * (180 - 90 + 1)) + 90) * 60 * 1000
+ ); // Random interval: min 90min/max 180min (1.5-3h), Results in min 8/max 16 posts per day
38
};
39
// setTimeout(() => {
40
generateNewTweetLoop();
0 commit comments