Skip to content

Commit

Permalink
Fix movie queue status for download client unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Feb 16, 2024
1 parent d64ee66 commit 4c8e9f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/Utilities/Movie/getQueueStatusText.js
Expand Up @@ -18,9 +18,9 @@ export default function getQueueStatusText(queueStatus, queueState) {
status = titleCase(queueStatus);
break;
case 'delay':
case 'downloadClientUnavailable':
status = translate('Pending');
break;
case 'DownloadClientUnavailable':
case 'warning':
status = translate('Error');
break;
Expand Down

0 comments on commit 4c8e9f2

Please sign in to comment.