// Se mudou de categoria e estã completo, vejo se agora tenho que pegar legenda
// Se não tem filtro por categoria ou não está completo cai fora, o evento onCompletion vai fazer o trabalho
if ((_configManager.getCategoryAll()) || (!download.isComplete()))
return;
// Se estiver completo pego as legendas
TorrentVO torrentVO = TorrentUtils.torrentMovieToTorrentVO(download, _pluginInterface);
DownloadThread downloadThread = new DownloadThread(_pluginInterface, torrentVO);
new Thread(downloadThread).start();
}