Better loop name

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Marc Brooks 2025-11-05 13:53:55 -06:00 committed by GitHub
parent 57a7aa6a8b
commit 05057cb6fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -261,8 +261,8 @@ func newSession(config SessionConfig) (*Session, error) {
}
}()
for queue := range session.hidQueues {
go session.handleQueue(session.hidQueues[queue])
for queueIndex := range session.hidQueues {
go session.handleQueue(session.hidQueues[queueIndex])
}
peerConnection.OnDataChannel(func(d *webrtc.DataChannel) {