fix: check key path condition bug

pull/83/head
moond4rk 4 years ago committed by ᴍᴏᴏɴD4ʀᴋ
parent 9a96817415
commit e3883be08b
  1. 6
      core/browser.go

@ -283,9 +283,9 @@ func PickCustomBrowser(browserName, cusProfile, cusKey string) ([]Browser, error
return nil, err
}
}
}
if err := checkKeyPath(cusKey); err != nil {
return nil, err
if err := checkKeyPath(cusKey); err != nil {
return nil, err
}
}
b, err := choice.New(cusProfile, cusKey, choice.Name, choice.Storage)
browsers = append(browsers, b)

Loading…
Cancel
Save