diff --git a/web/src/utils/Utils.js b/web/src/utils/Utils.js index cee820b..8a9b0cd 100644 --- a/web/src/utils/Utils.js +++ b/web/src/utils/Utils.js @@ -5,7 +5,7 @@ export function humanizeSize(size) { } export function getPeerString(torrent) { - if (!torrent || !torrent.connected_seeders) return '' + if (!torrent || !torrent.connected_seeders) return '[0] 0 / 0' return `[${torrent.connected_seeders}] ${torrent.active_peers} / ${torrent.total_peers}` }