diff --git a/RageCoop.Client/Networking/DownloadManager.cs b/RageCoop.Client/Networking/DownloadManager.cs index fb45b23..273997d 100644 --- a/RageCoop.Client/Networking/DownloadManager.cs +++ b/RageCoop.Client/Networking/DownloadManager.cs @@ -56,13 +56,7 @@ namespace RageCoop.Client } }); } - public static string ResourceFolder - { - get - { - return Path.Combine(Main.Settings.DataDirectory, "Resources", Main.Settings.LastServerAddress.Replace(":", ".")); - } - } + public static string ResourceFolder => Path.GetFullPath(Path.Combine(Main.Settings.DataDirectory, "Resources", Main.Settings.LastServerAddress.Replace(":", "."))); private static readonly Dictionary InProgressDownloads = new Dictionary(); private static readonly HashSet _resources = new HashSet(); public static bool AddFile(int id, string name, long length)