diff --git a/server/models/TorrentNotificationService.js b/server/models/TorrentNotificationService.js index aa1781bb..c62ecbc8 100644 --- a/server/models/TorrentNotificationService.js +++ b/server/models/TorrentNotificationService.js @@ -5,7 +5,8 @@ let propsMap = require('../../shared/constants/propsMap'); class NotificationService { hasFinished(prevData, nextData) { - return prevData.percentComplete < 100 && nextData.percentComplete === 100; + return !prevData.includes(propsMap.clientStatus.checking) + && prevData.percentComplete < 100 && nextData.percentComplete === 100; } compareNewTorrentData(prevData, nextData) {