Browse Source

Merge pull request #892 from PixiEditor/fixes/non-latin-crash-report-name

Fixed non latin crash report file paths
Krzysztof Krysiński 4 months ago
parent
commit
5cf7f3d9e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/PixiEditor/Initialization/ClassicDesktopEntry.cs

+ 1 - 1
src/PixiEditor/Initialization/ClassicDesktopEntry.cs

@@ -61,7 +61,7 @@ internal class ClassicDesktopEntry
 
         InitOperatingSystem();
 
-        if (ParseArgument("--crash (\"?)([A-z0-9:\\/\\ -_.]+)\\1", arguments, out Group[] groups))
+        if (ParseArgument(@"--crash (""?)([\w:\/\ -_.]+)\1", arguments, out Group[] groups))
         {
             try
             {