mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 20:57:22 +01:00
fix bug again
This commit is contained in:
parent
9760c11e42
commit
62a8ac8ae4
1 changed files with 1 additions and 1 deletions
|
|
@ -274,7 +274,7 @@ internal class DiscordBot : IHostedService
|
||||||
await foreach (var userList in guild.GetUsersAsync(new RequestOptions { CancelToken = token }).ConfigureAwait(false))
|
await foreach (var userList in guild.GetUsersAsync(new RequestOptions { CancelToken = token }).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
_logger.LogInformation("Processing chunk of {count} users, total processed: {proc}, total roles: {total}, roles added: {added}, users kicked: {kicked}, users plan to kick: {planToKick}, fresh user: {fresh}",
|
_logger.LogInformation("Processing chunk of {count} users, total processed: {proc}, total roles: {total}, roles added: {added}, users kicked: {kicked}, users plan to kick: {planToKick}, fresh user: {fresh}",
|
||||||
userList.Count, processedUsers, addedRoles, kickedUsers, totalRoles, toRemoveUsers, freshUsers);
|
userList.Count, processedUsers, totalRoles, addedRoles, kickedUsers, toRemoveUsers, freshUsers);
|
||||||
foreach (var user in userList)
|
foreach (var user in userList)
|
||||||
{
|
{
|
||||||
if (registeredUsers.Contains(user.Id))
|
if (registeredUsers.Contains(user.Id))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue