0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00

Fix setting account name and sender name when creating an account

This commit is contained in:
cketti 2023-07-17 12:37:44 +02:00
parent 8b07c61d18
commit 037b39a566

View File

@ -37,8 +37,8 @@ class AccountCreator(
newAccount.incomingServerSettings = account.incomingServerSettings
newAccount.outgoingServerSettings = account.outgoingServerSettings
newAccount.name = account.options.displayName
newAccount.senderName = account.options.accountName
newAccount.name = account.options.accountName
newAccount.senderName = account.options.displayName
if (account.options.emailSignature != null) {
newAccount.signatureUse = true
newAccount.signature = account.options.emailSignature