Archived
0
0
Fork 0

feat: don't show non-hoisted roles

This commit is contained in:
Daryl Ronningen 2021-12-23 19:24:13 -08:00
parent 865bf024f3
commit 0e2ffa7e9a
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B

View file

@ -253,6 +253,7 @@ namespace chord
foreach (var roles in client.GetGuild(currentSelectedGuild).Roles)
{
if (roles.IsHoisted) {
if (roles.Members.Count() != 0) {
var roleName = Regex.Replace(roles.Name, @"[^\u0000-\u007F]+", string.Empty);
var node = new TreeNode(roleName);
@ -271,6 +272,7 @@ namespace chord
rolesDict.TryAdd(Math.Abs(roles.Position - client.GetGuild(currentSelectedGuild).Roles.Count()), node);
}
}
}
foreach (var role in rolesDict)
{