Skip to content

Commit

Permalink
fix default value for dtls
Browse files Browse the repository at this point in the history
  • Loading branch information
dannagle committed Oct 26, 2024
1 parent 25c27e1 commit 944105d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,12 @@ int main(int argc, char *argv[])
}
}

QSettings settings(SETTINGSFILE, QSettings::IniFormat);
if(settings.value("leaveSessionOpen", "").toString().isEmpty()) {
settings.setValue("leaveSessionOpen", "false");
}





Expand Down

0 comments on commit 944105d

Please sign in to comment.