log click opens from tauri otherwise i have zero visibiltiy (#2291)
log opens Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
@ -488,6 +488,9 @@ fn main() -> Result<()> {
|
||||
|app, event| {
|
||||
#[cfg(any(target_os = "macos", target_os = "ios"))]
|
||||
if let tauri::RunEvent::Opened { urls } = event {
|
||||
if let Some(w) = app.get_webview_window("main") {
|
||||
let _ = w.eval(&format!("console.log(`[tauri] Opened URLs: {:?}`)", urls));
|
||||
}
|
||||
println!("Opened URLs: {:?}", urls);
|
||||
|
||||
// Handle the first URL.
|
||||
|
Reference in New Issue
Block a user