Return a fake ID from the symlink downloader when the symlink is done to accomodate a retry mechanism.
This commit is contained in:
parent
de9045d3f6
commit
70aae02d55
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue