Skip to content

Commit f558717

Browse files
committed
fix for spaces in path
1 parent 830904b commit f558717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PegasusExportPlugin/frmPegasusExport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ await Task.Run(() =>
311311
if (exportAssets)
312312
{
313313
var mediaFolder = Path.Combine(platformPath, "media",
314-
Path.GetFileNameWithoutExtension(game.ApplicationPath));
314+
Path.GetFileNameWithoutExtension(game.ApplicationPath).Trim());
315315

316316
var images = game.GetAllImagesWithDetails();
317317

0 commit comments

Comments
 (0)