From 0e9caf67ff407f1031b46b2d1bfdeca90ef1cf24 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Mon, 13 Oct 2025 01:16:35 +0800 Subject: [PATCH] :bug: username color hotfix --- DysonNetwork.Pass/Account/AccountCurrentController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DysonNetwork.Pass/Account/AccountCurrentController.cs b/DysonNetwork.Pass/Account/AccountCurrentController.cs index f1c9bef..db510d1 100644 --- a/DysonNetwork.Pass/Account/AccountCurrentController.cs +++ b/DysonNetwork.Pass/Account/AccountCurrentController.cs @@ -80,7 +80,7 @@ public class AccountCurrentController( [MaxLength(1024)] public string? TimeZone { get; set; } [MaxLength(1024)] public string? Location { get; set; } [MaxLength(4096)] public string? Bio { get; set; } - public UsernameColor? UsernameColor { get; set; } + public Shared.Models.UsernameColor? UsernameColor { get; set; } public Instant? Birthday { get; set; } public List? Links { get; set; } @@ -933,4 +933,4 @@ public class AccountCurrentController( .ToListAsync(); return Ok(records); } -} \ No newline at end of file +}