Skip to content

Commit 4b35354

Browse files
client/item: Force tuple usage when serializing
Fixes #93
1 parent 8ab2b9d commit 4b35354

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/src/dbus/api/item.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ impl<'a> Item<'a> {
135135
#[doc(alias = "SetSecret")]
136136
pub async fn set_secret(&self, secret: &Secret<'_>) -> Result<(), Error> {
137137
self.inner()
138-
.call_method("SetSecret", &(secret))
138+
.call_method("SetSecret", &(secret,))
139139
.await
140140
.map_err::<ServiceError, _>(From::from)?;
141141
Ok(())

0 commit comments

Comments
 (0)