1
Fork 0
mirror of https://github.com/thegeneralist01/archivr synced 2026-07-22 03:05:32 +02:00

fix(frontend): accurate error message when playlist probe fails

Previous text said 'using best quality' implying the capture would
proceed, but probe error now blocks submission. Replace with 'Probe
failed — edit URL to retry' in orange (capture-quality-hint--error)
so the disabled button and the message are consistent.
This commit is contained in:
TheGeneralist 2026-07-20 22:58:38 +02:00
parent 1cc5f73ae1
commit 5e6a612010
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
6 changed files with 10 additions and 5 deletions

View file

@ -744,7 +744,11 @@ function CaptureRow({ item, autoFocus, onLocatorChange, onQualityChange, onRemov
)
}
if (item.playlistProbeState === 'error') {
return <span className="capture-quality-hint">Probe failed using best quality</span>
return (
<span className="capture-quality-hint capture-quality-hint--error">
Probe failed edit URL to retry
</span>
)
}
return null
}