set default reconnect to true (#10)

* set default reconnect to true

* set reconnect delay to 2000ms
This commit is contained in:
mloginov 2023-09-08 18:09:08 +01:00 committed by GitHub
parent e069737ff9
commit a7c9f7a193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ const UI = {
UI.initSetting('show_dot', false);
UI.initSetting('path', 'websockify');
UI.initSetting('repeaterID', '');
UI.initSetting('reconnect', false);
UI.initSetting('reconnect_delay', 5000);
UI.initSetting('reconnect', true);
UI.initSetting('reconnect_delay', 2000);
UI.setupSettingLabels();
},