Files
decky-loader/frontend/src/steamfixes/index.ts
T
AAGaming 166c7ea8a7 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
2024-08-06 20:25:39 -07:00

14 lines
295 B
TypeScript

// import restartFix from './restart';
import cefSocketFix from './socket';
let fixes: Function[] = [];
export function deinitSteamFixes() {
fixes.forEach((deinit) => deinit());
}
export async function initSteamFixes() {
fixes.push(cefSocketFix());
// fixes.push(await restartFix());
}