Browse Source

Update code formatting

pull/872/head
BinkanSalaryman GitHub 7 years ago
parent
commit
036f57db95
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/Discord.Net.Rest/Entities/Channels/ChannelHelper.cs

+ 2
- 1
src/Discord.Net.Rest/Entities/Channels/ChannelHelper.cs View File

@@ -194,7 +194,8 @@ namespace Discord.Rest
if (i < batches)
{
batch = new ArraySegment<ulong>(msgs, i * BATCH_SIZE, BATCH_SIZE);
} else
}
else
{
batch = new ArraySegment<ulong>(msgs, i * BATCH_SIZE, msgs.Length - batches * BATCH_SIZE);
if (batch.Count == 0)


Loading…
Cancel
Save