blob: 07459d035cb2e50620747bacc3fdcb76d5a3ac60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
index 4740bda..55544ed 100644
--- a/src-tauri/src/main.rs
+++ b/src-tauri/src/main.rs
@@ -105,10 +105,6 @@ fn main() -> std::io::Result<()> {
api::process::kill_children();
app_handle.exit(0);
}
- tauri::RunEvent::Updater(tauri::UpdaterEvent::Downloaded) => {
- resolve::resolve_reset();
- api::process::kill_children();
- }
#[cfg(target_os = "macos")]
tauri::RunEvent::WindowEvent { label, event, .. } => {
use tauri::Manager;
|