Fixed .rero issue which was introduced in 4.0

This commit is contained in:
Kwoth
2022-03-03 22:32:28 +01:00
parent c7b312196e
commit e7db631151

View File

@@ -27,7 +27,7 @@ public partial class Administration
if (input.Length % 2 != 0 || target is null) if (input.Length % 2 != 0 || target is null)
return; return;
var all = await input.Chunk(input.Length / 2) var all = await input.Chunk(2)
.Select(async x => .Select(async x =>
{ {
var inputRoleStr = x.First(); var inputRoleStr = x.First();