From fa208b44d73808877bcc9c27012e6065523f1b12 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 18 Nov 2025 01:31:15 +0800 Subject: [PATCH] :bug: Fix publisher account name shows wrong --- lib/widgets/account/account_name.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/account/account_name.dart b/lib/widgets/account/account_name.dart index 7884c64e..55db6933 100644 --- a/lib/widgets/account/account_name.dart +++ b/lib/widgets/account/account_name.dart @@ -226,7 +226,7 @@ class AccountName extends StatelessWidget { children: [ Flexible( child: Text( - account.nick, + textOverride ?? account.nick, style: nameStyle, maxLines: 1, overflow: TextOverflow.ellipsis,