From 0fc32e737d158dabff52247dbfe6f01b20fd3da3 Mon Sep 17 00:00:00 2001 From: vadym Date: Fri, 28 Oct 2022 18:26:57 +0300 Subject: [PATCH] 1. return value fix --- src/core/link_other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/link_other.go b/src/core/link_other.go index 82457aae..03a56321 100644 --- a/src/core/link_other.go +++ b/src/core/link_other.go @@ -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 }