mirror of
https://github.com/m1k1o/neko.git
synced 2025-05-23 05:57:11 +02:00
inactive cursor length rewrite.
This commit is contained in:
parent
78e4c38264
commit
1025eedc22
1 changed files with 4 additions and 7 deletions
|
@ -147,15 +147,12 @@ func (manager *WebSocketManagerCtx) Start() {
|
||||||
return
|
return
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
cursorsMap := manager.sessions.PopCursors()
|
cursorsMap := manager.sessions.PopCursors()
|
||||||
if len(cursorsMap) == 0 {
|
|
||||||
if lastEmpty {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
lastEmpty = true
|
length := len(cursorsMap)
|
||||||
} else {
|
if length == 0 && lastEmpty {
|
||||||
lastEmpty = false
|
continue
|
||||||
}
|
}
|
||||||
|
lastEmpty = length == 0
|
||||||
|
|
||||||
cursors := []message.SessionCursor{}
|
cursors := []message.SessionCursor{}
|
||||||
for session, cursor := range cursorsMap {
|
for session, cursor := range cursorsMap {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue