Change to CommonApplicationFolder as applicationPath

This commit is contained in:
2023-05-22 01:49:53 +02:00
parent 8865bf284f
commit da1b0cb1cd
3 changed files with 6 additions and 18 deletions

View File

@ -14,7 +14,7 @@ public class TrangaSettings
public TrangaSettings(string downloadLocation, string? workingDirectory, Komga? komga)
{
this.workingDirectory = workingDirectory ??
Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Tranga");
Path.Join(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "Tranga");
this.downloadLocation = downloadLocation;
this.komga = komga;
}