summaryrefslogtreecommitdiffstats
path: root/tpl/urls/urls.go
diff options
context:
space:
mode:
authorseiya <20365512+seiyab@users.noreply.github.com>2024-04-03 09:12:13 +0900
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2024-04-04 11:00:14 +0200
commit6f07e5976de426c9637e77e3ae912df342c2b782 (patch)
tree7111f5792feefa15a6975b6900f9184f1f90c98d /tpl/urls/urls.go
parent2da4ec5738e9b9060aab37247312244e1b8a318d (diff)
errors: Return error from cast.ToStringE() consistently
Diffstat (limited to 'tpl/urls/urls.go')
-rw-r--r--tpl/urls/urls.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/tpl/urls/urls.go b/tpl/urls/urls.go
index 6c4681a0c..b7bfa22b9 100644
--- a/tpl/urls/urls.go
+++ b/tpl/urls/urls.go
@@ -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
}