mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-15 03:11:30 +03:00
bug fix
This commit is contained in:
@@ -287,4 +287,4 @@ class MultipleSessions: Reactor.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
view.on("size", function() { app.multipleSessions.onSize(); });
|
view.on("size", function() { if (app.multipleSessions) app.multipleSessions.onSize(); });
|
||||||
@@ -668,7 +668,7 @@ function checkConnectStatus() {
|
|||||||
}
|
}
|
||||||
if (handler.recent_sessions_updated()) {
|
if (handler.recent_sessions_updated()) {
|
||||||
stdout.println("recent sessions updated");
|
stdout.println("recent sessions updated");
|
||||||
app.multipleSessions.update();
|
app.update();
|
||||||
}
|
}
|
||||||
checkConnectStatus();
|
checkConnectStatus();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user