Handle deluge with 0 torrents
This commit is contained in:
parent
bec62a0949
commit
165add7f53
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue