From 166c7ea8a7ea74d9a61d84ebe16556cec9e7cc83 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Tue, 6 Aug 2024 23:25:39 -0400 Subject: Work around account switching failing to open the CEF debugger socket (#668) * Work around account switching failing to open the CEF debugger socket this automates lsof and gdb to force close the socket before steam finishes shutting down (from RegisterForShutdownStart) * lint * fix LD_LIBRARY_PATH for gdb --- frontend/src/steamfixes/index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'frontend/src/steamfixes/index.ts') diff --git a/frontend/src/steamfixes/index.ts b/frontend/src/steamfixes/index.ts index e3f2b284..3b3ee75f 100644 --- a/frontend/src/steamfixes/index.ts +++ b/frontend/src/steamfixes/index.ts @@ -1,5 +1,6 @@ -// import reloadFix from './reload'; -import restartFix from './restart'; +// import restartFix from './restart'; +import cefSocketFix from './socket'; + let fixes: Function[] = []; export function deinitSteamFixes() { @@ -7,6 +8,6 @@ export function deinitSteamFixes() { } export async function initSteamFixes() { - // fixes.push(await reloadFix()); - fixes.push(await restartFix()); + fixes.push(cefSocketFix()); + // fixes.push(await restartFix()); } -- cgit v1.2.3