Fix segfault due to using wrong opts struct

This commit is contained in:
Elara 2021-08-21 20:27:31 -07:00
parent 91fbe718e5
commit d228b6cf60
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func Connect(opts *Options) (*Device, error) {
// If such device does not exist
if errors.Is(err, ErrNoDevices) {
// Attempt to pair device
dev, err = pair(dev.opts.PairTimeout)
dev, err = pair(opts.PairTimeout)
}
if err != nil {
return nil, err