mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-29 07:16:07 +00:00
Improved handling of Internationalized Domain Names in punycode
This commit is contained in:
@@ -87,9 +87,8 @@ export class SystemDropDownUserView extends AbstractViewRight {
|
||||
}
|
||||
|
||||
accountName() {
|
||||
let email = AccountUserStore.email(),
|
||||
account = AccountUserStore.find(account => account.email == email);
|
||||
return account?.name || email;
|
||||
const email = AccountUserStore.email();
|
||||
return AccountUserStore.find(account => account.email == email)?.label() || IDN.toUnicode(email);
|
||||
}
|
||||
|
||||
settingsClick() {
|
||||
|
||||
Reference in New Issue
Block a user