feat(scrape): test scrape torrent info from other tracker server

This commit is contained in:
OldHawk
2017-08-29 12:26:32 +08:00
parent 0638d03442
commit 3aab02b523

View File

@@ -989,9 +989,11 @@ exports.torrentByID = function (req, res, next, id) {
scrape.doScrape(torrent, function (err, res) {
if (err) {
console.log('doScrape result: error!');
console.log(err);
}
if (res) {
console.log('doScrape result:');
console.log(res);
}
});