Private
Public Access
1
0

ContactResolver: implement in-memory cache for positive results

This commit is contained in:
2025-06-26 18:50:58 -07:00
parent e73cf321c0
commit 9e3e6dc66f
3 changed files with 29 additions and 7 deletions

View File

@@ -173,7 +173,7 @@ impl DBusAgent {
.map_err(|e| MethodErr::failed(&format!("Daemon error: {}", e)))
}
fn resolve_participant_display_name(&self, participant: &Participant) -> String {
fn resolve_participant_display_name(&mut self, participant: &Participant) -> String {
match participant {
// Me (we should use a special string here...)
Participant::Me => "(Me)".to_string(),