Skip to content

Commit

Permalink
another fix for destination
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Mar 21, 2024
1 parent 281e053 commit ba5a4dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/agama-server/src/questions/web.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?,
})
Expand Down Expand Up @@ -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")?;
Expand Down

0 comments on commit ba5a4dd

Please sign in to comment.