forked from External/grumble
Use default blobstore in Grumble.
This commit is contained in:
parent
4ac0c4c244
commit
690e5bc750
5 changed files with 20 additions and 17 deletions
|
|
@ -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.")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue