From 845022ad6d5c86e9ac33f3721d8703f36792dd69 Mon Sep 17 00:00:00 2001 From: Jannik Date: Tue, 21 Oct 2025 16:56:06 +0200 Subject: [PATCH] fix: add unit to mobile plugin arguments --- src/mobile.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mobile.rs b/src/mobile.rs index af71443..843fb4c 100644 --- a/src/mobile.rs +++ b/src/mobile.rs @@ -28,14 +28,14 @@ impl Duck { pub fn duck(&self) -> crate::Result { self .0 - .run_mobile_plugin("duck") + .run_mobile_plugin("duck", Some(())) .map_err(Into::into) } pub fn unduck(&self) -> crate::Result { self .0 - .run_mobile_plugin("unduck") + .run_mobile_plugin("unduck", Some(())) .map_err(Into::into) } }