Skip to content

Commit 0b79a41

Browse files
Default prevent disconnects to false
1 parent 306bf32 commit 0b79a41

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ASCOM.Alpaca.Simulators/ServerSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ internal static bool PreventRemoteDisconnects
219219
{
220220
get
221221
{
222-
if (bool.TryParse(Profile.GetValue("PreventRemoteDisconnects", true.ToString()), out bool result))
222+
if (bool.TryParse(Profile.GetValue("PreventRemoteDisconnects", false.ToString()), out bool result))
223223
{
224224
return result;
225225
}
226-
return true;
226+
return false;
227227
}
228228
set
229229
{

0 commit comments

Comments
 (0)