Handle deluge with 0 torrents

This commit is contained in:
Michael Shamoon 2022-11-23 15:08:06 -08:00
parent bec62a0949
commit 165add7f53

View file

@ -27,7 +27,7 @@ export default function Component({ service }) {
}
const { torrents } = torrentData;
const keys = Object.keys(torrents);
const keys = torrents ? Object.keys(torrents) : [];
let rateDl = 0;
let rateUl = 0;