We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf90fca commit 62a258fCopy full SHA for 62a258f
plugins/opener/src/lib.rs
@@ -191,9 +191,9 @@ impl Builder {
191
let mut builder = tauri::plugin::Builder::<R, Option<config::Config>>::new("opener")
192
.setup(|app, api| {
193
#[cfg(target_os = "android")]
194
- let handle = _api.register_android_plugin(PLUGIN_IDENTIFIER, "OpenerPlugin")?;
+ let handle = api.register_android_plugin(PLUGIN_IDENTIFIER, "OpenerPlugin")?;
195
#[cfg(target_os = "ios")]
196
- let handle = _api.register_ios_plugin(init_plugin_opener)?;
+ let handle = api.register_ios_plugin(init_plugin_opener)?;
197
198
app.manage(Opener {
199
#[cfg(not(mobile))]
0 commit comments