aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/plugins/store.ts
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-03 01:58:23 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-03 01:58:23 +0200
commitb09138a7f97559f2c59d240f882f16ec08d4934c (patch)
treedffe343bb99e11b26e7efcfadc2f87a61612ca03 /src-vue/src/plugins/store.ts
parente0aad4f931a57aa7621d4dc7e0a1c1e54170146e (diff)
downloadFlightCore-b09138a7f97559f2c59d240f882f16ec08d4934c.tar.gz
FlightCore-b09138a7f97559f2c59d240f882f16ec08d4934c.zip
fix: Do not show install button if TF|2 not found
Instead show a button saying that Titanfall2 was not found
Diffstat (limited to 'src-vue/src/plugins/store.ts')
-rw-r--r--src-vue/src/plugins/store.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src-vue/src/plugins/store.ts b/src-vue/src/plugins/store.ts
index ddd46e53..5087221b 100644
--- a/src-vue/src/plugins/store.ts
+++ b/src-vue/src/plugins/store.ts
@@ -32,7 +32,7 @@ export const store = createStore({
install_type: undefined,
installed_northstar_version: "",
- northstar_state: NorthstarState.INSTALL,
+ northstar_state: NorthstarState.GAME_NOT_FOUND,
release_canal: ReleaseCanal.RELEASE,
northstar_is_running: false,
@@ -190,4 +190,7 @@ async function _get_northstar_version_number(state: any) {
alert(error);
});
}
+ else {
+ state.northstar_state = NorthstarState.INSTALL;
+ }
}