diff options
| author | AAGaming <aagaming@riseup.net> | 2024-05-25 19:14:54 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-05-25 19:14:54 -0400 |
| commit | a84a13c76d99f1e6f4505d43108a4111749e5035 (patch) | |
| tree | e2826700cd371e6590818047551028d8179389bf /frontend/src/steamfixes/index.ts | |
| parent | 96cc72f2ca25ccb312b68a29aca755bb7df660ed (diff) | |
| download | decky-loader-a84a13c76d99f1e6f4505d43108a4111749e5035.tar.gz decky-loader-a84a13c76d99f1e6f4505d43108a4111749e5035.zip | |
Custom error handler and some misc fixes
Diffstat (limited to 'frontend/src/steamfixes/index.ts')
| -rw-r--r-- | frontend/src/steamfixes/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/steamfixes/index.ts b/frontend/src/steamfixes/index.ts index 45f07b2a..e3f2b284 100644 --- a/frontend/src/steamfixes/index.ts +++ b/frontend/src/steamfixes/index.ts @@ -1,5 +1,5 @@ // import reloadFix from './reload'; -// import restartFix from './restart'; +import restartFix from './restart'; let fixes: Function[] = []; export function deinitSteamFixes() { @@ -8,5 +8,5 @@ export function deinitSteamFixes() { export async function initSteamFixes() { // fixes.push(await reloadFix()); - // fixes.push(await restartFix()); + fixes.push(await restartFix()); } |
