Skip to content

Commit

Permalink
Fix new strike size
Browse files Browse the repository at this point in the history
  • Loading branch information
SchizoDuckie committed Dec 8, 2015
1 parent b70b31d commit 7958163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/services/TorrentSearchEngines/Strike.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DuckieTV.factory('Strike', ["$q", "$http",
var out = {
magneturl: torrents[i].magnet_uri,
releasename: torrents[i].torrent_title,
size: Math.round(((torrents[i].size / 1024 / 1024) + 0.00001) * 100) / 100 + " MB",
size: Math.round(((torrents[i].size / 1024 / 1024) + 0.00001) * 100) + " MB",
seeders: torrents[i].seeds,
leechers: torrents[i].leeches,
detailUrl: torrents[i].page
Expand Down

0 comments on commit 7958163

Please sign in to comment.