Fix reloading UI on updates and restarting steam (#303)

This commit is contained in:
AAGaming
2023-01-07 20:33:28 -05:00
committed by GitHub
parent b8fdff8093
commit b72b327610
9 changed files with 151 additions and 44 deletions
+12
View File
@@ -0,0 +1,12 @@
import reloadFix from './reload';
import restartFix from './restart';
let fixes: Function[] = [];
export function deinitSteamFixes() {
fixes.forEach((deinit) => deinit());
}
export async function initSteamFixes() {
fixes.push(reloadFix());
fixes.push(await restartFix());
}