Skip to content

Commit

Permalink
Use the full path for the AppData path
Browse files Browse the repository at this point in the history
  • Loading branch information
Dankrushen committed Dec 5, 2019
1 parent f3a3976 commit 96cc592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiAdmin/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public void StartServer(bool restartOnCrash = true)
scpslArgs.Add($"-configpath \"{configLocation}\"");
}

string appDataPath = ServerConfig.AppDataLocation.Value;
string appDataPath = Utils.GetFullPathSafe(ServerConfig.AppDataLocation.Value);
if (!string.IsNullOrEmpty(appDataPath))
{
scpslArgs.Add($"-appdatapath \"{appDataPath}\"");
Expand Down

0 comments on commit 96cc592

Please sign in to comment.