Return a fake ID from the symlink downloader when the symlink is done to accomodate a retry mechanism.

This commit is contained in:
Roger Far 2024-01-08 19:52:00 -07:00
parent de9045d3f6
commit 70aae02d55

View file

@ -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<String?>(null);
return Task.FromResult<String?>(Guid.NewGuid().ToString());
}
public Task Cancel()