mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 13:09:31 +01:00
attempt a fix (#1929)
This commit is contained in:
parent
ae3634e9d4
commit
9569f56aa5
@ -153,7 +153,7 @@ export default async function jdownloaderProxyHandler(req, res) {
|
||||
})
|
||||
|
||||
const packageStatus = await queryPackages(loginData[4], deviceData[1], loginData[5], {
|
||||
"bytesLoaded": false,
|
||||
"bytesLoaded": true,
|
||||
"bytesTotal": true,
|
||||
"comment": false,
|
||||
"enabled": true,
|
||||
@ -171,13 +171,13 @@ export default async function jdownloaderProxyHandler(req, res) {
|
||||
}
|
||||
)
|
||||
|
||||
let bytesRemaining = 0;
|
||||
let totalLoaded = 0;
|
||||
let totalBytes = 0;
|
||||
let totalSpeed = 0;
|
||||
packageStatus.forEach(file => {
|
||||
totalBytes += file.bytesTotal;
|
||||
if (file.finished !== true) {
|
||||
bytesRemaining += file.bytesTotal;
|
||||
totalLoaded += file.bytesLoaded;
|
||||
if (file.speed) {
|
||||
totalSpeed += file.speed;
|
||||
}
|
||||
@ -186,11 +186,11 @@ export default async function jdownloaderProxyHandler(req, res) {
|
||||
|
||||
const data = {
|
||||
downloadCount: packageStatus.length,
|
||||
bytesRemaining,
|
||||
bytesRemaining: totalBytes - totalLoaded,
|
||||
totalBytes,
|
||||
totalSpeed
|
||||
};
|
||||
|
||||
return res.send(data);
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user