mirror of https://github.com/jetkvm/kvm.git
Better loop name
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
57a7aa6a8b
commit
05057cb6fa
|
|
@ -261,8 +261,8 @@ func newSession(config SessionConfig) (*Session, error) {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
for queue := range session.hidQueues {
|
for queueIndex := range session.hidQueues {
|
||||||
go session.handleQueue(session.hidQueues[queue])
|
go session.handleQueue(session.hidQueues[queueIndex])
|
||||||
}
|
}
|
||||||
|
|
||||||
peerConnection.OnDataChannel(func(d *webrtc.DataChannel) {
|
peerConnection.OnDataChannel(func(d *webrtc.DataChannel) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue