Fix nil completor
This commit is contained in:
parent
e8bbd08d57
commit
0f93c0740c
|
@ -52,8 +52,11 @@ func (c Config) Predict(prefix string) []string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c Config) Check(value string) error {
|
func (c Config) Check(value string) error {
|
||||||
|
if !c.check || c.Predictor == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
predictions := c.Predictor.Predict(value)
|
predictions := c.Predictor.Predict(value)
|
||||||
if !c.check || len(predictions) == 0 {
|
if len(predictions) == 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
for _, vv := range predictions {
|
for _, vv := range predictions {
|
||||||
|
|
Loading…
Reference in New Issue