We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5dd401 commit 7cb27ddCopy full SHA for 7cb27dd
1 file changed
Save In Companion/Settings.cs
@@ -23,7 +23,7 @@ public class Settings
23
24
public string DownloadsFolderPath { get; set; }
25
26
- public string SaveInLinksFolderName { get; set; }
+ public string SaveInLinksFolderName { get; set; } = "SaveInLinks";
27
28
public string SaveInLinksFolderPath { get { return Path.Combine(DownloadsFolderPath, SaveInLinksFolderName); } }
29
@@ -52,14 +52,6 @@ public class Settings
52
private Settings()
53
{
54
DownloadsFolderPath = GetDefaultDownloadsFolder();
55
- if (Environment.OSVersion.Platform == PlatformID.Unix || Environment.OSVersion.Platform == PlatformID.MacOSX)
56
- {
57
- SaveInLinksFolderName = ".SaveInLinks";
58
- }
59
- else
60
61
- SaveInLinksFolderName = "SaveInLinks";
62
63
}
64
65
public void SaveSettings()
0 commit comments