forked from pothtonswer/discordmuffin
Fix error msg
This commit is contained in:
parent
ad91025f59
commit
604872ed4b
1 changed files with 1 additions and 1 deletions
2
voice.go
2
voice.go
|
@ -614,7 +614,7 @@ func (v *VoiceConnection) udpKeepAlive(udpConn *net.UDPConn, close <-chan struct
|
||||||
|
|
||||||
_, err = udpConn.Write(packet)
|
_, err = udpConn.Write(packet)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
v.log(LogError, "write error, %s")
|
v.log(LogError, "write error, %s", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue