Skip to content

Commit

Permalink
fix(linux): allow deep link to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD authored Aug 31, 2023
1 parent 5f25861 commit e8d5416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/deep_link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ pub fn register_deep_link_handler(win: tauri::Window) {
win.set_focus().unwrap();
win.unminimize().unwrap();
})
.unwrap();
.unwrap_or_default();
}

0 comments on commit e8d5416

Please sign in to comment.