fix: do not show contact address in message info (#7695)

closes #7686
This commit is contained in:
Simon Laux
2026-01-09 17:04:22 +00:00
committed by GitHub
parent 2631745a57
commit b536902827
2 changed files with 4 additions and 5 deletions

View File

@@ -4748,7 +4748,7 @@ async fn test_list_from() -> Result<()> {
"clubinfo@donotreply.oeamtc.at"
);
let info = msg.id.get_info(t).await?;
assert!(info.contains(" by ~ÖAMTC (clubinfo@donotreply.oeamtc.at)"));
assert!(info.contains(" by ~ÖAMTC"));
Ok(())
}