From 44890f51ee18fc036dca067a6576b493c84a7f01 Mon Sep 17 00:00:00 2001 From: whimsical-c4lic0 Date: Tue, 6 May 2025 15:57:03 -0500 Subject: [PATCH] Add default value to video resolution config option --- OF DL/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OF DL/Program.cs b/OF DL/Program.cs index 67580f7..bac1b0d 100644 --- a/OF DL/Program.cs +++ b/OF DL/Program.cs @@ -280,7 +280,7 @@ public class Program DownloadDateSelection = Enum.Parse(hoconConfig.GetString("Download.DownloadDateSelection"), true), CustomDate = !string.IsNullOrWhiteSpace(hoconConfig.GetString("Download.CustomDate")) ? DateTime.Parse(hoconConfig.GetString("Download.CustomDate")) : null, ShowScrapeSize = hoconConfig.GetBoolean("Download.ShowScrapeSize"), - DownloadVideoResolution = ParseVideoResolution(hoconConfig.GetString("Download.DownloadVideoResolution")), + DownloadVideoResolution = ParseVideoResolution(hoconConfig.GetString("Download.DownloadVideoResolution", "source")), // File Settings PaidPostFileNameFormat = hoconConfig.GetString("File.PaidPostFileNameFormat"),