1. return value fix

This commit is contained in:
vadym 2022-10-28 18:26:57 +03:00
parent 9859006693
commit 0fc32e737d

View file

@ -126,7 +126,7 @@ func (l *links) call(u *url.URL, sintf string) (linkInfo, error) {
}()
default:
return errors.New("unknown call scheme: " + u.Scheme)
return info, errors.New("unknown call scheme: " + u.Scheme)
}
return info, nil
}