Fix order of root http route

This commit is contained in:
Ben Sarmiento
2024-01-10 02:51:37 +01:00
parent ed87c2bbcc
commit b26d8c6c84
2 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ func NewTorrentManager(cfg config.ConfigInterface, api *realdebrid.RealDebrid, p
Api: api,
allAccessKeys: mapset.NewSet[string](),
latestState: &LibraryState{},
requiredVersion: "07.01.2024",
requiredVersion: "10.01.2024",
workerPool: p,
log: log,
}
@@ -84,7 +84,7 @@ func NewTorrentManager(cfg config.ConfigInterface, api *realdebrid.RealDebrid, p
offset += len(downloads)
page++
if offset >= totalDownloads {
t.log.Infof("Fetched %d downloads", t.DownloadCache.Count())
t.log.Infof("Compiled into %d downloads", t.DownloadCache.Count())
break
}
}