1
0
Fork 0
forked from External/grumble

Use default blobstore in Grumble.

This commit is contained in:
Mikkel Krautz 2011-05-13 17:07:55 +02:00
parent 4ac0c4c244
commit 690e5bc750
5 changed files with 20 additions and 17 deletions

View file

@ -13,6 +13,7 @@ import (
"goprotobuf.googlecode.com/hg/proto"
"mumbleproto"
"cryptstate"
"grumble/blobstore"
"io"
"packetdatastream"
)
@ -543,7 +544,7 @@ func (client *Client) sendChannelTree(channel *Channel) {
if client.Version >= 0x10202 {
chanstate.DescriptionHash = channel.DescriptionBlobHashBytes()
} else {
buf, err := globalBlobstore.Get(channel.DescriptionBlob)
buf, err := blobstore.Get(channel.DescriptionBlob)
if err != nil {
panic("Blobstore error.")
}