Fixed symlink retrying.

This commit is contained in:
Roger Far 2024-01-09 19:23:46 -07:00
parent a5709ae52e
commit f80f041eeb

View file

@ -64,7 +64,7 @@ public class SymlinkDownloader : IDownloader
_logger.Information($"File {fileName} not found on {Settings.Get.DownloadClient.RcloneMountPath}!"); _logger.Information($"File {fileName} not found on {Settings.Get.DownloadClient.RcloneMountPath}!");
// Return null and try again next cycle. // Return null and try again next cycle.
return Task.FromResult<String?>(Guid.NewGuid().ToString()); return Task.FromResult<String?>(null);
} }
public Task Cancel() public Task Cancel()