fix sse processVideo default

This commit is contained in:
waveringana 2025-05-11 19:33:59 -04:00
parent e98307679b
commit 06efb67198

View file

@ -16,7 +16,7 @@ class ProgressManager {
private constructor() { private constructor() {
this.emitter = new EventEmitter(); this.emitter = new EventEmitter();
this.activeJobs = new Map(); this.activeJobs = new Map();
this.processVideo = process.env["EB_PROCESS_VIDEO"] === "true"; this.processVideo = process.env["EB_PROCESS_VIDEO"] !== "false";
} }
static getInstance(): ProgressManager { static getInstance(): ProgressManager {