Merge pull request #464 from Zagrios/chore/use-winhttp-dll-to-detect-bsipa-installation

[chore] use winhttp.dll to detect bsipa installation
This commit is contained in:
MathieuG-P
2024-04-20 16:33:20 +02:00
committed by GitHub
@@ -112,7 +112,7 @@ export class BsModsManagerService {
private async getBsipaInstalled(version: BSVersion): Promise<Mod> {
const bsPath = await this.bsLocalService.getVersionPath(version);
const injectorPath = path.join(bsPath, "Beat Saber_Data", "Managed", "IPA.Injector.dll");
const injectorPath = path.join(bsPath, "IPA", "winhttp.dll");
if (!(await pathExist(injectorPath))) {
return undefined;
}