Imap setup simplified and fixed the threading issues.

This commit is contained in:
Burak Kaan Köse
2026-04-13 23:11:35 +02:00
parent a2acad9ea4
commit 2e36772a4c
4 changed files with 268 additions and 286 deletions
+1 -1
View File
@@ -475,7 +475,7 @@ public class AccountService : BaseDatabaseService, IAccountService
public async Task UpdateAccountCustomServerInformationAsync(CustomServerInformation customServerInformation)
{
await Connection.UpdateAsync(customServerInformation, typeof(CustomServerInformation)).ConfigureAwait(false);
await Connection.InsertOrReplaceAsync(customServerInformation, typeof(CustomServerInformation)).ConfigureAwait(false);
}
public async Task UpdateAccountAliasesAsync(Guid accountId, List<MailAccountAlias> aliases)