diff --git a/desktop/src-tauri/src/lib.rs b/desktop/src-tauri/src/lib.rs index c125bd97..57937b7c 100644 --- a/desktop/src-tauri/src/lib.rs +++ b/desktop/src-tauri/src/lib.rs @@ -271,7 +271,6 @@ pub fn run() { info!("handling drop:// url"); let binding = event.urls(); let url = binding.first().unwrap(); - return; // We're macOS if url.host_str().unwrap() == "handshake" { recieve_handshake(handle.clone(), url.path().to_string()) } diff --git a/desktop/src-tauri/src/process/process_manager.rs b/desktop/src-tauri/src/process/process_manager.rs index a9d7725f..57b748ae 100644 --- a/desktop/src-tauri/src/process/process_manager.rs +++ b/desktop/src-tauri/src/process/process_manager.rs @@ -123,8 +123,6 @@ impl ProcessManager<'_> { let status = GameStatusManager::fetch_state(&game_id); push_game_update(&self.app_handle, game_id.clone(), status); - - // TODO better management } pub fn valid_platform(&self, platform: &Platform) -> Result {