Clarify the difference between screen name and username (#769)

Co-authored-by: Yusuke Arakawa <nekolaboratory@users.noreply.github.com>
This commit is contained in:
Yusuke Arakawa 2023-02-11 02:30:59 +09:00 committed by GitHub
parent 9f9a03c54b
commit 6219f4c446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ public extension Account {
var safeDisplayName: String {
if displayName.isEmpty || displayName == "" {
return username
return "@\(username)"
}
return displayName
}