From 9b0e77839203601663ee14039bf1c7a5c9796aa6 Mon Sep 17 00:00:00 2001 From: Gronod Date: Fri, 15 May 2026 21:29:16 +0100 Subject: [PATCH] fix: show full download path (content_path) for qBittorrent - Prefer content_path over save_path for qBittorrent torrents - content_path is the full path to the single file or top-level folder for multi-file torrents - save_path is just the base download directory --- server/utils/qbittorrent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/utils/qbittorrent.js b/server/utils/qbittorrent.js index 91d06b2..2f10284 100644 --- a/server/utils/qbittorrent.js +++ b/server/utils/qbittorrent.js @@ -198,7 +198,7 @@ function mapTorrentToDownload(torrent) { hash: torrent.hash, category: torrent.category, tags: torrent.tags, - savePath: torrent.save_path || torrent.content_path || null, + savePath: torrent.content_path || torrent.save_path || null, qbittorrent: true }; }