Fix downloads progress logging

This commit is contained in:
Ben Sarmiento
2023-11-30 03:52:42 +01:00
parent c6e4a304bf
commit 5472f7d08d
3 changed files with 1 additions and 6 deletions

View File

@@ -357,6 +357,6 @@ func (rd *RealDebrid) GetDownloads(page, offset int) ([]Download, int, error) {
totalCount = 0
}
rd.log.Debugf("Got %d downloads (page %d), total count is %d", len(allDownloads), page, totalCount)
rd.log.Debugf("Got %d downloads (page %d), total count is %d", len(allDownloads)+offset, page, totalCount)
return allDownloads, totalCount, nil
}