From c562e75a97f61ecad03cd13803de49e5b168faf3 Mon Sep 17 00:00:00 2001 From: YvesPa <166829028+YvesPa@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:48:48 +0200 Subject: [PATCH] correct Path with category --- .../Services/Downloaders/DownloadStationDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/RdtClient.Service/Services/Downloaders/DownloadStationDownloader.cs b/server/RdtClient.Service/Services/Downloaders/DownloadStationDownloader.cs index 3a11918..44375b8 100644 --- a/server/RdtClient.Service/Services/Downloaders/DownloadStationDownloader.cs +++ b/server/RdtClient.Service/Services/Downloaders/DownloadStationDownloader.cs @@ -59,7 +59,7 @@ public class DownloadStationDownloader : IDownloader } else { - remotePath = Path.Combine(downloadPath, category, downloadPath).Replace('\\', '/'); + remotePath = Path.Combine(rootPath, category, downloadPath).Replace('\\', '/'); } }