Change pathing in manifest from / to \

dashboard
Pat Hartl 2023-01-08 12:10:37 -06:00
parent 1e9d2e52c9
commit 3c30c5066b
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ namespace LANCommander.PlaynitePlugin
Name = action.Name,
Arguments = action.Arguments,
Path = PlayniteApi.ExpandGameVariables(game, action.Path),
WorkingDir = action.WorkingDirectory ?? game.InstallDirectory,
WorkingDir = action.WorkingDirectory.Replace('/', Path.DirectorySeparatorChar) ?? game.InstallDirectory,
IsPlayAction = action.IsPrimaryAction || isFirstAction
});
}