removed logging

This commit is contained in:
Alberto Miranda
2016-08-27 03:56:08 -03:00
parent 4cdc3085ff
commit 1e5ac1df9c

View File

@@ -45,10 +45,7 @@ module.exports = class PlaybackController {
if (this.state.saved.prefs.highestPlaybackPriority) {
// do not pause active torrents if playing a fully downloaded torrent
var torrentSummary = TorrentSummary.getByKey(this.state, infoHash)
if (torrentSummary.status === 'seeding') {
console.log('--- NOT PAUSING active torrents for already downloaded torrent!')
return
}
if (torrentSummary.status === 'seeding') return
var params = {
filter: {status: /downloading|seeding/},