We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d421f33 commit ce2ca50Copy full SHA for ce2ca50
src/Bot/Systems/Commands/Text/Modules/Utility/AvatarCommand.cs
@@ -15,7 +15,7 @@ public Task<ActionResult> AvatarAsync(
15
.WithImageUrl(user.GetEffectiveAvatarUrl()));
16
17
string formatAvatarSizesToUrls(params ushort[] sizes) =>
18
- sizes.Select(x => $"{Format.Url(x.ToString(), user.GetEffectiveAvatarUrl(size: x))} ")
+ sizes.Select(x => $" {Format.Url(x.ToString(), user.GetEffectiveAvatarUrl(size: x))} ")
19
.JoinToString('|').Trim();
20
}
21
0 commit comments