Skip to content

Commit 35b30c4

Browse files
committed
Re-enable retry connection on first start
I had disabled the auto-retry functionality at start because the program hangs as it tries to connect. We'll need to address multithreaded app functionality to truly fix this.
1 parent 11998ca commit 35b30c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WinNUT_V2/WinNUT-Client/WinNUT.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ Public Class WinNUT
401401
' Begin auto-connecting if user indicated they wanted it. (Note: Will hang form because we don't do threading yet)
402402
If Arr_Reg_Key.Item("AutoReconnect") Then
403403
LogFile.LogTracing("Auto-connecting to UPS on startup.", LogLvl.LOG_NOTICE, Me)
404-
UPS_Connect()
404+
UPS_Connect(True)
405405
End If
406406

407407
LogFile.LogTracing("Completed WinNUT_Shown", LogLvl.LOG_DEBUG, Me)

0 commit comments

Comments
 (0)