Simplify sonarr / radarr queues, better handle some errors

This commit is contained in:
shamoon
2023-06-05 22:21:26 -07:00
parent 5b3d1cc6e0
commit dd4ee44302
8 changed files with 64 additions and 116 deletions

View File

@@ -29,7 +29,7 @@ const widget = {
timeLeft: entry.timeleft,
size: entry.size,
sizeLeft: entry.sizeleft,
movieId: entry.movieId,
movieId: entry.movieId ?? entry.id,
status: entry.status
})).sort((a, b) => {
const downloadingA = a.trackedDownloadState === "downloading"