fix: Use fallback ICE servers if server can't IMAP METADATA (#7382)

This commit is contained in:
iequidoo
2025-11-22 06:11:38 -03:00
committed by link2xt
parent f6817131b8
commit 1ea8ed6442
2 changed files with 30 additions and 28 deletions

View File

@@ -538,9 +538,9 @@ async fn inbox_fetch_idle(ctx: &Context, imap: &mut Imap, mut session: Session)
.await
.context("Failed to download messages")?;
session
.fetch_metadata(ctx)
.update_metadata(ctx)
.await
.context("Failed to fetch metadata")?;
.context("update_metadata")?;
session
.register_token(ctx)
.await