Fix QBittorrentClient export in legacy qbittorrent.js
Some checks failed
Build and Push Docker Image / build (push) Successful in 44s
Licence Check / Licence compatibility and copyright header verification (push) Successful in 57s
CI / Security audit (push) Successful in 1m15s
CI / Tests & coverage (push) Failing after 1m22s

Remove undefined QBittorrentClient export that was causing
container startup failures. The actual implementation is now
in server/clients/QBittorrentClient.js
This commit is contained in:
2026-05-19 11:21:31 +01:00
parent bf3e1c353d
commit f095e6a2d1

View File

@@ -125,11 +125,10 @@ function mapTorrentToDownload(torrent) {
} }
module.exports = { module.exports = {
getTorrents: getAllTorrents, getAllTorrents,
getClients, getClients,
mapTorrentToDownload, mapTorrentToDownload,
formatBytes, formatBytes,
formatSpeed, formatSpeed,
formatEta, formatEta
QBittorrentClient
}; };