mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Don't complain on ErrClosedPipe.
This commit is contained in:
parent
151f37c062
commit
d84604832d
1 changed files with 1 additions and 1 deletions
|
@ -316,7 +316,7 @@ func addUpConn(c *client, id string) (*upConnection, error) {
|
|||
continue
|
||||
}
|
||||
err := l.track.WriteRTP(&packet)
|
||||
if err != nil {
|
||||
if err != nil && err != io.ErrClosedPipe {
|
||||
log.Printf("%v", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue