From f80f041eeb2f7bea1b2c0fb53b0b9720f393e993 Mon Sep 17 00:00:00 2001 From: Roger Far Date: Tue, 9 Jan 2024 19:23:46 -0700 Subject: [PATCH] Fixed symlink retrying. --- .../RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs b/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs index 3343d70..22d86d7 100644 --- a/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs +++ b/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs @@ -64,7 +64,7 @@ public class SymlinkDownloader : IDownloader _logger.Information($"File {fileName} not found on {Settings.Get.DownloadClient.RcloneMountPath}!"); // Return null and try again next cycle. - return Task.FromResult(Guid.NewGuid().ToString()); + return Task.FromResult(null); } public Task Cancel()