Update WelsonJS.Toolkit/WelsonJS.Launcher/ZipExtractor.cs

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Namhyeon Go 2025-05-17 02:43:34 +09:00 committed by GitHub
parent 3361fc1270
commit db3f0eae0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -170,8 +170,11 @@ namespace WelsonJS.Launcher
return false;
dynamic shell = Activator.CreateInstance(shellAppType);
if (shell == null)
return false;
dynamic zip = shell.NameSpace(filePath);
dynamic dest = shell.NameSpace(workingDirectory);
dynamic dest = shell.NameSpace(workingDirectory);
if (zip == null || dest == null)
return false;