Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/grumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml1
-rw-r--r--cmd/grumble/client.go2
2 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d93dde3..3deeae1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,7 @@ language: go
go:
- 1.9
- 1.10.x
+ - 1.14.x
go_import_path: mumble.info/grumble
diff --git a/cmd/grumble/client.go b/cmd/grumble/client.go
index 8fb1650..a2f535a 100644
--- a/cmd/grumble/client.go
+++ b/cmd/grumble/client.go
@@ -161,7 +161,7 @@ func (client *Client) IsVerified() bool {
// Log a panic and disconnect the client.
func (client *Client) Panic(v ...interface{}) {
- client.Print(v)
+ client.Print(v...)
client.Disconnect()
}