[bugfix] Fix reject error message in OculusService

This commit is contained in:
MathieuG-P
2024-01-20 16:38:52 +01:00
parent 40f6803b90
commit cfb2b35bf7
+1 -1
View File
@@ -114,7 +114,7 @@ export class OculusService {
setTimeout(() => {
clearInterval(interval);
reject("Unable to open Oculus");
reject(new Error("Unable to open Oculus"));
}, sToMs(30));
});
}