Skip to content

Commit

Permalink
[ISO Creator] Improve reliability of API
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingWonders committed Oct 8, 2024
1 parent 2222eeb commit d786b15
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Panels/ISOFiles/ISOCreator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,11 @@ Public Class ISOCreator
End Select
MsgBox(msg, vbOKOnly + vbCritical, Label1.Text)
Finally
DismApi.Shutdown()
Try
DismApi.Shutdown()
Catch ex As Exception
' Don't do anything
End Try
End Try
Call MainForm.MountedImageDetectorBW.RunWorkerAsync()
End Sub
Expand Down

0 comments on commit d786b15

Please sign in to comment.