From f095e6a2d11db82bd3777602b427b3d0ad4f3cc5 Mon Sep 17 00:00:00 2001 From: Gronod Date: Tue, 19 May 2026 11:21:31 +0100 Subject: [PATCH] Fix QBittorrentClient export in legacy qbittorrent.js Remove undefined QBittorrentClient export that was causing container startup failures. The actual implementation is now in server/clients/QBittorrentClient.js --- server/utils/qbittorrent.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server/utils/qbittorrent.js b/server/utils/qbittorrent.js index 7804479..c04e9b5 100644 --- a/server/utils/qbittorrent.js +++ b/server/utils/qbittorrent.js @@ -125,11 +125,10 @@ function mapTorrentToDownload(torrent) { } module.exports = { - getTorrents: getAllTorrents, + getAllTorrents, getClients, mapTorrentToDownload, formatBytes, formatSpeed, - formatEta, - QBittorrentClient + formatEta };