From 17b1d5974ad432b9b6c59e8cda53f056c4967590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20F=C3=B6rtsch?= Date: Wed, 15 Apr 2026 07:04:44 +0200 Subject: [PATCH] pipeline: remove plan_update SSE listener (feature gone) --- src/features/pipeline/PipelinePage.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/features/pipeline/PipelinePage.tsx b/src/features/pipeline/PipelinePage.tsx index d32a6b8..385c229 100644 --- a/src/features/pipeline/PipelinePage.tsx +++ b/src/features/pipeline/PipelinePage.tsx @@ -58,12 +58,6 @@ export function PipelinePage() { } scheduleReload(); }); - // plan_update lands ~15s after a job finishes — the post-job jellyfin - // verification writes verified=1 (or flips the plan back to pending). - // Without refreshing here the Done column would never promote ✓ to ✓✓. - es.addEventListener("plan_update", () => { - scheduleReload(); - }); es.addEventListener("job_progress", (e) => { setProgress(JSON.parse((e as MessageEvent).data)); });