diff --git a/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs b/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs index 9739d0f..318b7ee 100644 --- a/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs +++ b/server/RdtClient.Service/Services/Downloaders/SymlinkDownloader.cs @@ -16,7 +16,7 @@ public class SymlinkDownloader(String uri, String destinationPath, String path) public async Task Download() { - _logger.Debug($"Starting symlink resolving of {uri}, writing to path: {path}"); + _logger.Debug($"Starting symlink resolving of {path} (uri = {uri}), writing to path: {destinationPath}"); try { @@ -57,7 +57,7 @@ public class SymlinkDownloader(String uri, String destinationPath, String path) Speed = 0 }); - var potentialFilePaths = new List(); + var potentialFilePaths = new List { searchPath }; var directoryInfo = new DirectoryInfo(searchPath); while (directoryInfo.Parent != null)