aboutsummaryrefslogtreecommitdiff
path: root/connect.go
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2022-05-01 17:22:24 +0200
committerHimbeerserverDE <himbeerserverde@gmail.com>2022-05-01 17:22:24 +0200
commitd537e252b2faec752e725689f6d8bcf8affaefce (patch)
treef0233aef696a0a8d012eeaac09fed7097f3323ee /connect.go
parentdc0a2e5516bce12f9dafd4c8f8ed82f6ec1ce837 (diff)
Fix inconsistent use of TexturePool and MediaPool
Diffstat (limited to 'connect.go')
-rw-r--r--connect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/connect.go b/connect.go
index 714ce79..746caa7 100644
--- a/connect.go
+++ b/connect.go
@@ -20,7 +20,7 @@ func connect(conn net.Conn, name string, cc *ClientConn) *ServerConn {
var mediaPool string
for _, srv := range Conf().Servers {
if srv.Name == name {
- mediaPool = srv.TexturePool
+ mediaPool = srv.MediaPool
}
}