Can now try to unpause errored torrent

This commit is contained in:
Igor Katson 2023-11-25 18:42:43 +00:00
parent e3a3f71064
commit 3de67d0902
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
4 changed files with 33 additions and 16 deletions

View file

@ -106,7 +106,7 @@ const TorrentActions: React.FC<{
let refreshCtx = useContext(RefreshTorrentStatsContext);
const canPause = state == 'live';
const canUnpause = state == 'paused';
const canUnpause = state == 'paused' || state == 'error';
const ctx = useContext(AppContext);