Skip to content

Commit

Permalink
fix #16
Browse files Browse the repository at this point in the history
  • Loading branch information
Kylart committed Jun 22, 2020
1 parent fdaca9d commit 29bfb84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/si/scrap.js
Expand Up @@ -24,7 +24,8 @@ const extractFromHTML = (data, includeMaxPage = false) => {
torrent: baseUrl + _getChild(this, 3).find('a:nth-child(1)').attr('href'),
seeders: _getChild(this, 6).text(),
leechers: _getChild(this, 7).text(),
completed: _getChild(this, 8).text()
completed: _getChild(this, 8).text(),
status: $(this).attr('class')
}

results.push(result)
Expand Down

0 comments on commit 29bfb84

Please sign in to comment.