miscellaneous fixes

This commit is contained in:
2025-04-03 18:22:33 -04:00
parent 84a0c754a3
commit 17a7c90245
5 changed files with 12 additions and 6 deletions

View File

@ -33,7 +33,7 @@ namespace LibTSforge.SPP
bool stopped = false;
for (int i = 0; stopped == false && i < 360; i++)
for (int i = 0; stopped == false && i < 1080; i++)
{
try
{
@ -48,7 +48,7 @@ namespace LibTSforge.SPP
}
catch (InvalidOperationException ex)
{
Logger.WriteLine("Warning: Stopping sppsvc failed, retrying. Details:" + ex.Message);
Logger.WriteLine("Warning: Stopping sppsvc failed, retrying. Details: " + ex.Message);
System.Threading.Thread.Sleep(500);
continue;
}