fix : opening link 2
All checks were successful
release / build (push) Successful in 26s
release / verify-windows (push) Successful in 1m4s

This commit is contained in:
jeanotx32
2026-08-12 01:16:52 +02:00
parent a38baf9a88
commit 3bd4d5f2ba
4 changed files with 95 additions and 5 deletions

View File

@@ -62,7 +62,10 @@ type ObsSnapshot = Pick<
| 'cpuUsage'
| 'fps'
| 'droppedFrames'
| 'outputTotalFrames'
| 'renderSkippedFrames'
| 'renderTotalFrames'
| 'frameRenderTimeMs'
>;
const RECONNECT_DELAY_MS = 5000;
@@ -512,7 +515,10 @@ export class ObsController extends EventEmitter {
cpuUsage: stats.cpuUsage,
fps: stats.activeFps,
droppedFrames: stats.outputSkippedFrames,
outputTotalFrames: stats.outputTotalFrames,
renderSkippedFrames: stats.renderSkippedFrames,
renderTotalFrames: stats.renderTotalFrames,
frameRenderTimeMs: stats.averageFrameRenderTime,
};
} catch (err) {
this.lastError = err instanceof Error ? err.message : String(err);