- add: zip content support

This commit is contained in:
2026-01-16 21:02:34 +03:00
parent 15e4e3fbd7
commit ff31412719
10 changed files with 98 additions and 45 deletions

View File

@@ -57,7 +57,7 @@ public class ProcessRunHandler : IDisposable
_processInfoTask.Wait();
}
_process = Process.Start(_processInfo!);
_process = Process.Start(_processInfo ?? throw new Exception("Process info is null, please try again."));
if (_process is null) return;