fix(info): fix info files limitation in output

This commit is contained in:
Alexey Kasyanchuk 2018-03-12 10:41:08 +03:00
parent 833fc2eaf3
commit cfff5c7603

View File

@ -382,7 +382,7 @@ if(config.p2pBootstrap)
if(options.files) if(options.files)
{ {
sphinx.query('SELECT * FROM `files` WHERE `hash` = ?', hash, function (error, rows, fields) { sphinx.query('SELECT * FROM `files` WHERE `hash` = ? LIMIT 50000', hash, function (error, rows, fields) {
torrent.filesList = rows; torrent.filesList = rows;
callback(baseRowData(torrent)) callback(baseRowData(torrent))
}); });