From affaa3ff17292e3c7e96d5dec9e949bb49a44936 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Sun, 6 Aug 2023 10:43:25 +0200 Subject: [PATCH] Program.cs - Update 'AppData' path to use the product name of the application --- PCK-Studio/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Program.cs b/PCK-Studio/Program.cs index a086894c..fd1dad39 100644 --- a/PCK-Studio/Program.cs +++ b/PCK-Studio/Program.cs @@ -11,7 +11,7 @@ namespace PckStudio public static readonly string ProjectUrl = "https://github.com/PhoenixARC/-PCK-Studio"; public static readonly string BaseAPIUrl = "http://api.pckstudio.xyz/api/pck"; public static readonly string BackUpAPIUrl = "https://raw.githubusercontent.com/PhoenixARC/pckstudio.tk/main/studio/PCK/api/"; - public static readonly string AppData = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "PCK-Studio"); + public static readonly string AppData = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), Application.ProductName); public static readonly string AppDataCache = Path.Combine(AppData, "cache"); public static MainForm MainInstance { get; private set; }