Small bugfix

This commit is contained in:
2025-10-24 17:46:17 +02:00
parent 33c3080867
commit 0439ad00b3
3 changed files with 5 additions and 1 deletions

View File

@@ -162,6 +162,7 @@ var UnityRunner = /** @class */ (function () {
if (this.restartTriggered)
return [2 /*return*/];
this.restartTriggered = true;
this._Main.WebServer.Calibration.hasCalibrationImage = false;
clearInterval(this.statusClock);
this.startTime = -1;
this.broadcastState();

File diff suppressed because one or more lines are too long

View File

@@ -138,6 +138,9 @@ export class UnityRunner {
async restart(instant: boolean = false) {
if (this.restartTriggered) return;
this.restartTriggered = true;
this._Main.WebServer.Calibration.hasCalibrationImage = false;
clearInterval(this.statusClock);
this.startTime = -1;