Skip to content

Commit

Permalink
increase outgoing message queue size to 1000
Browse files Browse the repository at this point in the history
the current limit of 100 was arbitrary anyway,
and at a season's end we do send out more than 100 messages
  • Loading branch information
Felk committed Jan 12, 2025
1 parent 780f961 commit a9e48e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TPP.Core/Chat/TwitchChatQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public TwitchChatQueue(
ILogger<TwitchChatQueue> logger,
string senderUserId,
TwitchApi twitchApi,
int maxQueueLength = 100,
int maxQueueLength = 1000,
Duration? sleepDuration = null)
{
_logger = logger;
Expand Down

0 comments on commit a9e48e7

Please sign in to comment.