Browse Source

Fixed non latin crash report file paths not being parsed correctly in program arguments

CPKreuz 6 months ago
parent
commit
debbfcf7f2
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();
         InitOperatingSystem();
 
 
-        if (ParseArgument("--crash (\"?)([A-z0-9:\\/\\ -_.]+)\\1", arguments, out Group[] groups))
+        if (ParseArgument(@"--crash (""?)([\w:\/\ -_.]+)\1", arguments, out Group[] groups))
         {
         {
             try
             try
             {
             {