summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-09-18 14:49:32 -0400
committerAAGaming <aa@mail.catvibers.me>2022-09-18 14:49:32 -0400
commit7716c73014a645d3742c24eaa7c7b1d54e081363 (patch)
tree89120cabfb6b1dca621fa7e319c278a499169acf /frontend
parent8829adc5b6361cc7ab972ea2f43ab07db206dc93 (diff)
downloaddecky-loader-7716c73014a645d3742c24eaa7c7b1d54e081363.tar.gz
decky-loader-7716c73014a645d3742c24eaa7c7b1d54e081363.zip
fix plugin loading after install, move updater reloads to loader
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/updater.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/frontend/src/updater.ts b/frontend/src/updater.ts
index ff9cb591..2c0b66fe 100644
--- a/frontend/src/updater.ts
+++ b/frontend/src/updater.ts
@@ -1,5 +1,3 @@
-import { sleep } from 'decky-frontend-lib';
-
export enum Branches {
Release,
Prerelease,
@@ -46,6 +44,4 @@ export async function callUpdaterMethod(methodName: string, args = {}) {
export async function finishUpdate() {
callUpdaterMethod('do_restart');
- await sleep(3000);
- location.reload();
}