From 46ac50c393b2d5af010186865523f56a5b46c75a Mon Sep 17 00:00:00 2001 From: Flaminel Date: Thu, 27 Feb 2025 22:01:59 +0200 Subject: [PATCH] fixed hard links check --- .../Verticals/DownloadClient/QBittorrent/QBitService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs b/code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs index 605650d..ff17942 100644 --- a/code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs +++ b/code/Infrastructure/Verticals/DownloadClient/QBittorrent/QBitService.cs @@ -408,7 +408,7 @@ public class QBitService : DownloadService, IQBitService break; } - if (hardlinkCount > 1) + if (hardlinkCount > 0) { hasHardlinks = true; }