mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-11 23:31:03 +03:00
fix more bool options (#8809)
* fix more bool options * hide sort ab tags because it's already sorted Signed-off-by: 21pages <sunboeasy@gmail.com>
This commit is contained in:
@@ -1149,7 +1149,7 @@ function showSettings() {
|
||||
function checkConnectStatus() {
|
||||
handler.check_mouse_time(); // trigger connection status updater
|
||||
self.timer(1s, function() {
|
||||
var tmp = !!handler.get_option("stop-service");
|
||||
var tmp = handler.get_option("stop-service") == "Y";
|
||||
if (tmp != service_stopped) {
|
||||
service_stopped = tmp;
|
||||
app.update();
|
||||
|
||||
Reference in New Issue
Block a user