mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-14 17:50:13 +00:00
fix: display correct color when looking up other systems' groups
This commit is contained in:
parent
22feedd5dc
commit
93f1158d33
1 changed files with 1 additions and 1 deletions
|
|
@ -460,7 +460,7 @@ public class Groups
|
||||||
}
|
}
|
||||||
|
|
||||||
var title = system.Name != null ? $"Groups of {system.Name} (`{system.Hid}`)" : $"Groups of `{system.Hid}`";
|
var title = system.Name != null ? $"Groups of {system.Name} (`{system.Hid}`)" : $"Groups of `{system.Hid}`";
|
||||||
await ctx.Paginate(groups.ToAsyncEnumerable(), groups.Count, 25, title, ctx.System.Color, Renderer);
|
await ctx.Paginate(groups.ToAsyncEnumerable(), groups.Count, 25, title, system.Color, Renderer);
|
||||||
|
|
||||||
Task Renderer(EmbedBuilder eb, IEnumerable<ListedGroup> page)
|
Task Renderer(EmbedBuilder eb, IEnumerable<ListedGroup> page)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue