fix potentially missing client or stream for a quic store
This commit is contained in:
parent
e98794e125
commit
de1fb63a1c
1 changed files with 8 additions and 4 deletions
|
@ -29,12 +29,16 @@ func NewStore(opts StoreOpts) *Store {
|
|||
|
||||
// CloseStore closes the client that gets initialized when the store is initialized
|
||||
func (p *Store) CloseStore() error {
|
||||
if p.client != nil && p.client.stream != nil {
|
||||
err := p.client.stream.Close()
|
||||
if err != nil {
|
||||
return errors.Err(err)
|
||||
}
|
||||
return p.client.Close()
|
||||
}
|
||||
return nil
|
||||
|
||||
}
|
||||
|
||||
// Has asks the peer if they have a hash
|
||||
func (p *Store) Has(hash string) (bool, error) {
|
||||
|
|
Loading…
Reference in a new issue