You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: extension capture works regardless of captureOffScreen toggle
The capture handler used captureOffScreen flag to decide which array to
look up the canvas index from. Workers are always in __SPECTOR_Canvases
but captureOffScreen defaults to false, so the handler looked in DOM
canvases instead — missing the Worker proxy entirely.
Fixed by always checking __SPECTOR_Canvases first (where Worker proxies
live), falling back to DOM query only for legacy canvases.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments