Merge pull request #809 from silentrald/bugfix/oculus-path-linux

[bugfix-801] fixed issue when downloading oculus version in linux
This commit is contained in:
MathieuG-P
2025-02-19 19:15:29 +01:00
committed by GitHub
2 changed files with 17 additions and 4 deletions
@@ -107,7 +107,7 @@ export class BsOculusDownloaderService {
let downloadVersion: BSVersion
return of(downloadInfo.token).pipe(
switchMap(token => {
switchMap(async token => {
isOculusTokenValid(token, log.info); // Log token validity
if(!downloadInfo.isVerification){
return this.createDownloadVersion(downloadInfo.bsVersion).then(({version, dest}) => ({token, version, dest}))