Normalize colors to lowercase hex

This commit is contained in:
Ske
2020-02-25 16:37:52 +01:00
parent e455bd6d12
commit 45c5e5ed42
3 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ namespace PluralKit.API
throw new JsonModelParseError("Member name can not be set to null.");
if (o.ContainsKey("name")) member.Name = o.Value<string>("name").BoundsCheckField(Limits.MaxMemberNameLength, "Member name");
if (o.ContainsKey("color")) member.Color = o.Value<string>("color").NullIfEmpty();
if (o.ContainsKey("color")) member.Color = o.Value<string>("color").NullIfEmpty()?.ToLower();
if (o.ContainsKey("display_name")) member.DisplayName = o.Value<string>("display_name").NullIfEmpty().BoundsCheckField(Limits.MaxMemberNameLength, "Member display name");
if (o.ContainsKey("birthday"))
{