Skip to content

Commit

Permalink
fix: update condition not satisfying when required
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorf committed Nov 10, 2024
1 parent b273300 commit 3f35b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDropsBot.Core/Bot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public async Task WatchStreamAsync(AbstractBroadcaster broadcaster, DropCurrentS
{
List<Channel>? channels = dropCampaign.GetChannels();

if (channels != null && channels.Count >= 10)
if (channels != null && channels.Count <= 10)
{
foreach (var channel in channels)
{
Expand Down

0 comments on commit 3f35b73

Please sign in to comment.