From 3365953bcc5a1db3ccbd4f678e084f1333a6570e Mon Sep 17 00:00:00 2001 From: Ulysses Zhan Date: Tue, 7 Apr 2026 14:09:38 -0700 Subject: [PATCH] Fix remote browser --- PatreonDownloader.App/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PatreonDownloader.App/Program.cs b/PatreonDownloader.App/Program.cs index f829a43..5576ebe 100644 --- a/PatreonDownloader.App/Program.cs +++ b/PatreonDownloader.App/Program.cs @@ -160,6 +160,7 @@ private static async Task InitializeSettings(CommandL DownloadDirectory = commandLineOptions.DownloadDirectory, FileExistsAction = commandLineOptions.FileExistsAction, IsCheckRemoteFileSize = !commandLineOptions.IsDisableRemoteFileSizeCheck, + RemoteBrowserAddress = string.IsNullOrWhiteSpace(commandLineOptions.RemoteBrowserAddress) ? null : new Uri(commandLineOptions.RemoteBrowserAddress), IsUseSubDirectories = commandLineOptions.UseSubDirectories, SubDirectoryPattern = commandLineOptions.SubDirectoryPattern, MaxSubdirectoryNameLength = commandLineOptions.MaxSubdirectoryNameLength,