Revert "[chore] use winhttp.dll to detect bsipa installation"

This commit is contained in:
MathieuG-P
2024-05-19 20:07:58 +02:00
committed by GitHub
parent 6e9c6e6c9e
commit 69e573a12c
@@ -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, "IPA", "winhttp.dll");
const injectorPath = path.join(bsPath, "Beat Saber_Data", "Managed", "IPA.Injector.dll");
if (!(await pathExist(injectorPath))) {
return undefined;
}