Skip to content

Commit ce2ca50

Browse files
committed
fix padding in avatar command
1 parent d421f33 commit ce2ca50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Bot/Systems/Commands/Text/Modules/Utility/AvatarCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public Task<ActionResult> AvatarAsync(
1515
.WithImageUrl(user.GetEffectiveAvatarUrl()));
1616

1717
string formatAvatarSizesToUrls(params ushort[] sizes) =>
18-
sizes.Select(x => $"{Format.Url(x.ToString(), user.GetEffectiveAvatarUrl(size: x))} ")
18+
sizes.Select(x => $" {Format.Url(x.ToString(), user.GetEffectiveAvatarUrl(size: x))} ")
1919
.JoinToString('|').Trim();
2020
}
2121
}

0 commit comments

Comments
 (0)