From ba5a4dd242455a902bc1810854ffaab51defa2f7 Mon Sep 17 00:00:00 2001 From: Josef Reidinger Date: Thu, 21 Mar 2024 12:25:55 +0100 Subject: [PATCH] another fix for destination --- rust/agama-server/src/questions/web.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/agama-server/src/questions/web.rs b/rust/agama-server/src/questions/web.rs index 8694eb88d..109082161 100644 --- a/rust/agama-server/src/questions/web.rs +++ b/rust/agama-server/src/questions/web.rs @@ -45,7 +45,7 @@ impl<'a> QuestionsClient<'a> { connection: dbus.clone(), objects_proxy: ObjectManagerProxy::builder(&dbus) .path(question_path)? - .destination("org.opensuse.Agama1.Questions")? + .destination("org.opensuse.Agama1")? .build() .await?, }) @@ -223,7 +223,7 @@ pub async fn questions_stream( let proxy = ObjectManagerProxy::builder(&dbus) .path(question_path) .context("Failed to create object manager path")? - .destination("org.opensuse.Agama1.Questions")? + .destination("org.opensuse.Agama1")? .build() .await .context("Failed to create Object MAnager proxy")?;