Skip to content

Commit

Permalink
Fix bug for msposd button
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioFPVdev authored Dec 27, 2024
1 parent 5b4924f commit 3092f29
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Configurator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -2899,15 +2899,10 @@ err1:

Private Sub btnMSP_Click_1(sender As Object, e As EventArgs) Handles btnMSP.Click
Dim extern = "extern.bat"
Dim msp_file = "msposd"
If Not File.Exists(extern) Then
MsgBox("File " + extern + " not found!")
Return
End If
If Not File.Exists(msp_file) Then
MsgBox("File " + msp_file + " not found!")
Return
End If

If IsValidIP(txtIP.Text) Then
With New Process()
Expand Down

0 comments on commit 3092f29

Please sign in to comment.