errors: Return error from cast.ToStringE() consistently

This commit is contained in:
seiya
2024-04-03 09:12:13 +09:00
committed by Bjørn Erik Pedersen
parent 2da4ec5738
commit 6f07e5976d
2 changed files with 7 additions and 7 deletions

View File

@@ -42,7 +42,7 @@ type Namespace struct {
func (ns *Namespace) AbsURL(s any) (string, error) {
ss, err := cast.ToStringE(s)
if err != nil {
return "", nil
return "", err
}
return ns.deps.PathSpec.AbsURL(ss, false), nil
@@ -64,7 +64,7 @@ func (ns *Namespace) Parse(rawurl any) (*url.URL, error) {
func (ns *Namespace) RelURL(s any) (string, error) {
ss, err := cast.ToStringE(s)
if err != nil {
return "", nil
return "", err
}
return ns.deps.PathSpec.RelURL(ss, false), nil
@@ -74,7 +74,7 @@ func (ns *Namespace) RelURL(s any) (string, error) {
func (ns *Namespace) URLize(s any) (string, error) {
ss, err := cast.ToStringE(s)
if err != nil {
return "", nil
return "", err
}
return ns.deps.PathSpec.URLize(ss), nil
}
@@ -84,7 +84,7 @@ func (ns *Namespace) URLize(s any) (string, error) {
func (ns *Namespace) Anchorize(s any) (string, error) {
ss, err := cast.ToStringE(s)
if err != nil {
return "", nil
return "", err
}
return ns.deps.ContentSpec.SanitizeAnchorName(ss), nil
}