We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58a4cde commit 63fa6bbCopy full SHA for 63fa6bb
VolumeControl/Program.cs
@@ -304,7 +304,7 @@ private static int Main_Impl(string[] args)
304
#if RELEASE_FORINSTALLER // use the application's AppData directory for the config file
305
Settings = new(Path.Combine(PathFinder.ApplicationAppDataPath, "VolumeControl.json"));
306
307
- if (Settings.LogPath == DefaultLogPath && !CanWriteToDirectory(exeDir))
+ if (Settings.LogPath == Config.DefaultLogPath && !CanWriteToDirectory(exeDir))
308
Settings.LogPath = Path.Combine(PathFinder.ApplicationAppDataPath, "VolumeControl.log");
309
#else
310
Settings = new("VolumeControl.json");
0 commit comments