From e03c0cdbbae79c5ebdaa2309992e3c2b1f7b2ec6 Mon Sep 17 00:00:00 2001 From: midzelis Date: Wed, 8 Apr 2026 06:41:01 +0000 Subject: [PATCH] fix(web): cancel video preview fetch when bind:this is cleared early MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In Svelte 5.53.9, `bind:this` is now cleared earlier in the unmount sequence ("better bind:this cleanup timing"). The video thumbnail's $effect was relying on the old order to read the bound `player` element and clear its `src` to abort the in-flight `/api/assets/{id}/video/playback` range request — but the bind is now `undefined` by the time the effect runs, so the cleanup is silently skipped. The detached