Fix create session

This commit is contained in:
世界 2023-04-24 09:32:07 +08:00
parent b8acf3f145
commit cef8cd82b8
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -114,7 +114,7 @@ func (c *Client) offer(ctx context.Context) (abstractSession, error) {
c.access.Lock()
defer c.access.Unlock()
sessions := make([]abstractSession, 0, c.maxConnections)
var sessions []abstractSession
for element := c.connections.Front(); element != nil; {
if element.Value.IsClosed() {
nextElement := element.Next()