feat: add bot field to contact (#4821)

closes #4647
This commit is contained in:
Sebastian Klähn
2023-10-15 12:40:32 +02:00
committed by GitHub
parent 0751cc50b9
commit 1632035784
5 changed files with 43 additions and 1 deletions

View File

@@ -379,6 +379,8 @@ pub(crate) async fn receive_imf_inner(
.handle_reports(context, from_id, sent_timestamp, &mime_parser.parts)
.await;
from_id.mark_bot(context, mime_parser.is_bot).await?;
Ok(Some(received_msg))
}