Private
Public Access
1
0

kordophoned sans kpcli building on macos

This commit is contained in:
James Magahern
2025-07-31 19:16:44 -07:00
parent 742703cb8e
commit 8115f94121
11 changed files with 120 additions and 27 deletions

View File

@@ -9,7 +9,7 @@ use crate::daemon::{
settings::Settings,
signals::Signal,
DaemonResult,
contact_resolver::{ContactResolver, EDSContactResolverBackend},
contact_resolver::{ContactResolver, DefaultContactResolverBackend},
};
use kordophone_db::models::participant::Participant;
@@ -23,7 +23,7 @@ use dbus_tokio::connection;
pub struct DBusAgent {
event_sink: mpsc::Sender<Event>,
signal_receiver: Arc<Mutex<Option<mpsc::Receiver<Signal>>>>,
contact_resolver: ContactResolver<EDSContactResolverBackend>,
contact_resolver: ContactResolver<DefaultContactResolverBackend>,
}
impl DBusAgent {
@@ -31,7 +31,7 @@ impl DBusAgent {
Self {
event_sink,
signal_receiver: Arc::new(Mutex::new(Some(signal_receiver))),
contact_resolver: ContactResolver::new(EDSContactResolverBackend::default()),
contact_resolver: ContactResolver::new(DefaultContactResolverBackend::default()),
}
}