fix(search): show types of torrents on files search fix

This commit is contained in:
Alexey Kasyanchuk 2018-04-24 03:28:44 +03:00
parent f90038e73b
commit e5e9aa2a88

View File

@ -373,7 +373,7 @@ module.exports = ({
for(const torrent of torrents) for(const torrent of torrents)
{ {
search[torrent.hash] = Object.assign(torrent, search[torrent.hash]) search[torrent.hash] = Object.assign(baseRowData(torrent), search[torrent.hash])
} }
callback(Object.values(search)); callback(Object.values(search));