🐛 Dozens of bug fixes

This commit is contained in:
2025-10-26 02:49:23 +08:00
parent c003f27b9a
commit 0a161ad255
4 changed files with 24 additions and 26 deletions

View File

@@ -580,7 +580,8 @@ class PostHeader extends StatelessWidget {
children: [
Flexible(
child:
item.publisher.account != null
(item.publisher.account != null &&
item.publisher.type == 0)
? AccountName(
account: item.publisher.account!,
textOverride: item.publisher.nick,
@@ -592,7 +593,10 @@ class PostHeader extends StatelessWidget {
overflow: TextOverflow.ellipsis,
).bold(),
),
if (item.publisher.verification != null)
if ((item.publisher.account?.profile.verification !=
null &&
item.publisher.type == 0) &&
item.publisher.verification != null)
VerificationMark(mark: item.publisher.verification!),
if (item.realm == null)
Flexible(