mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-25 02:45:48 +03:00
fix: size error (#900)
This commit is contained in:
parent
c69850872f
commit
d1d5498e31
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ export default {
|
|||
.map(getters.getTorrent)
|
||||
.filter(torrent => torrent !== undefined)
|
||||
.map(torrent => torrent.size)
|
||||
.reduce((partialSum, newVal) => partialSum + newVal)
|
||||
.reduce((partialSum, newVal) => partialSum + newVal, 0)
|
||||
|
||||
return i18n
|
||||
.tc('dashboard.selectedTorrentsCount', state.filteredTorrentsCount)
|
||||
|
|
Loading…
Reference in a new issue