mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2026-01-20 14:00:56 +00:00
fix(webclient): Peer online status
This commit is contained in:
2
resources/web2/js/dist/index.js
vendored
2
resources/web2/js/dist/index.js
vendored
@@ -11550,7 +11550,7 @@ async function or(u) {
|
||||
let E = [], l = [];
|
||||
for (let d = 0; d < e.length; d++) {
|
||||
const c = 1 << 7 - d % 8;
|
||||
(s[d / 8] & c) === c ? E.push(e[d]) : l.push(e[d])
|
||||
(s[Math.floor(d / 8)] & c) === c ? E.push(e[d]) : l.push(e[d])
|
||||
}
|
||||
_t(E, l), n.close();
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user