diff --git a/src/UI/Activity/Queue/QueueStatusCell.js b/src/UI/Activity/Queue/QueueStatusCell.js index 52e30b3dc..138089545 100644 --- a/src/UI/Activity/Queue/QueueStatusCell.js +++ b/src/UI/Activity/Queue/QueueStatusCell.js @@ -15,7 +15,7 @@ define( if (this.cellValue) { var status = this.cellValue.get('status').toLowerCase(); - var trackedDownloadStatus = this.cellValue.get('trackedDownloadStatus').toLowerCase(); + var trackedDownloadStatus = this.cellValue.has('trackedDownloadStatus') ? this.cellValue.get('trackedDownloadStatus').toLowerCase() : 'ok'; var icon = 'icon-nd-downloading'; var title = 'Downloading'; var itemTitle = this.cellValue.get('title');