diff --git a/src/eventmanager.cpp b/src/eventmanager.cpp index e3c5aa96e..ff758e40f 100644 --- a/src/eventmanager.cpp +++ b/src/eventmanager.cpp @@ -101,7 +101,7 @@ void EventManager::modifiedTorrent(QTorrentHandle h) QVariant v; if(h.is_paused()) { - if(BTSession->isDownloadQueued(hash) || BTSession->isUploadQueued(hash)) + if(BTSession->isQueueingEnabled() && (BTSession->isDownloadQueued(hash) || BTSession->isUploadQueued(hash))) v = QVariant("queued"); else v = QVariant("paused");