aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/northstar
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2024-01-17 02:41:15 +0100
committerGitHub <noreply@github.com>2024-01-17 02:41:15 +0100
commit18a82df7e991ce64586bcc32afa184cbe7f9aa41 (patch)
tree2293307dbb8d2920a25e78a25219ded708a406b1 /src-tauri/src/northstar
parent49eb3c92b1116b6d8c3d5dceb7b2deabc504803a (diff)
downloadFlightCore-18a82df7e991ce64586bcc32afa184cbe7f9aa41.tar.gz
FlightCore-18a82df7e991ce64586bcc32afa184cbe7f9aa41.zip
refactor: Make launching via Steam an arg passed to backend (#753)
instead of a separate dedicated function
Diffstat (limited to 'src-tauri/src/northstar')
-rw-r--r--src-tauri/src/northstar/mod.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs
index e707849e..ea4f4cde 100644
--- a/src-tauri/src/northstar/mod.rs
+++ b/src-tauri/src/northstar/mod.rs
@@ -154,10 +154,16 @@ pub fn get_northstar_version_number(game_install: GameInstall) -> Result<String,
#[tauri::command]
pub fn launch_northstar(
game_install: GameInstall,
+ launch_via_steam: Option<bool>,
bypass_checks: Option<bool>,
) -> Result<String, String> {
dbg!(game_install.clone());
+ let launch_via_steam = launch_via_steam.unwrap_or(false);
+ if launch_via_steam {
+ return launch_northstar_steam(game_install, bypass_checks);
+ }
+
let host_os = get_host_os();
// Explicitly fail early certain (currently) unsupported install setups
@@ -222,7 +228,6 @@ pub fn launch_northstar(
}
/// Prepare Northstar and Launch through Steam using the Browser Protocol
-#[tauri::command]
pub fn launch_northstar_steam(
game_install: GameInstall,
_bypass_checks: Option<bool>,