Don't show padding files

This commit is contained in:
DC
2016-07-20 22:40:18 -07:00
parent a4a31d0860
commit 0d3c18d3bc
3 changed files with 3 additions and 2 deletions

View File

@@ -221,6 +221,7 @@ module.exports = class TorrentList extends React.Component {
} else {
// We do know the files. List them and show download stats for each one
var fileRows = torrentSummary.files
.filter((file) => !file.path.includes('/.____padding_file/'))
.map((file, index) => ({ file, index }))
.sort(function (a, b) {
if (a.file.name < b.file.name) return -1